1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
from django.utils.translation import ugettext_lazy as _
from django.core.urlresolvers import reverse
from admin_tools.dashboard import modules, Dashboard, AppIndexDashboard
# to activate your index dashboard add the following to your settings.py:
#
# ADMIN_TOOLS_INDEX_DASHBOARD = '{{ project }}.{{ file }}.CustomIndexDashboard'
class CustomIndexDashboard(Dashboard):
"""
Custom index dashboard for {{ project }}.
"""
def __init__(self, **kwargs):
Dashboard.__init__(self, **kwargs)
# append a link list module for "quick links"
#self.children.append(modules.LinkList(
# title=_('Quick links'),
# layout='inline',
# draggable=False,
# deletable=False,
# collapsible=False,
# children=[
# {
# 'title': _('Return to site'),
# 'url': '/',
# },
# {
# 'title': _('Change password'),
# 'url': reverse('admin:password_change'),
# },
# {
# 'title': _('Log out'),
# 'url': reverse('admin:logout')
# },
# ]
#))
self.children.append(modules.LinkList(
column=1,
title=_('Media Management'),
children=[
{
'title': _('Django FileBrowser'),
'url': '/admin/filebrowser/browse/',
'external': False,
},
]
))
# append an app list module for "Administration"
self.children.append(modules.AppList(
title=_('Administration'),
include_list=('django.contrib',),
css_classes=['collapse', 'open'],
))
# append an app list module for "Applications"
self.children.append(modules.AppList(
title=_('Applications'),
exclude_list=('django.contrib',),
css_classes=['collapse', 'open'],
))
# append a recent actions module
self.children.append(modules.RecentActions(
column=2,
title=_('Recent Actions'),
limit=5
))
# append a feed module
self.children.append(modules.Feed(
column=2,
title=_('Latest Django News'),
feed_url='http://www.djangoproject.com/rss/weblog/',
limit=5
))
# append another link list module for "support".
self.children.append(modules.LinkList(
column=2,
title=_('Support'),
children=[
{
'title': _('Django documentation'),
'url': 'http://docs.djangoproject.com/',
'external': True,
},
{
'title': _('Django "django-users" mailing list'),
'url': 'http://groups.google.com/group/django-users',
'external': True,
},
{
'title': _('Django irc channel'),
'url': 'irc://irc.freenode.net/django',
'external': True,
},
]
))
def init_with_context(self, context):
"""
Use this method if you need to access the request context.
"""
pass
# to activate your app index dashboard add the following to your settings.py:
#
# ADMIN_TOOLS_APP_INDEX_DASHBOARD = '{{ project }}.{{ file }}.CustomAppIndexDashboard'
class CustomAppIndexDashboard(AppIndexDashboard):
"""
Custom app index dashboard for {{ project }}.
"""
def __init__(self, *args, **kwargs):
AppIndexDashboard.__init__(self, *args, **kwargs)
# we disable title because its redundant with the model list module
self.title = ''
# append a model list module
self.children.append(modules.ModelList(
title=_(self.app_title),
models=self.models,
))
# append a recent actions module
self.children.append(modules.RecentActions(
column=2,
title=_('Recent Actions'),
include_list=self.get_app_content_types(),
))
def init_with_context(self, context):
"""
Use this method if you need to access the request context.
"""
pass
|