-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.py
154 lines (126 loc) · 4.71 KB
/
dashboard.py
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
142
143
144
145
146
147
148
149
150
151
152
153
154
"""
This file was generated with the customdashboard management command, it
contains the two classes for the main dashboard and app index dashboard.
You can customize these classes as you want.
To activate your index dashboard add the following to your settings.py::
ADMIN_TOOLS_INDEX_DASHBOARD = 'calmat_ng.dashboard.CustomIndexDashboard'
And to activate the app index dashboard::
ADMIN_TOOLS_APP_INDEX_DASHBOARD = 'calmat_ng.dashboard.CustomAppIndexDashboard'
"""
from django.utils.translation import ugettext_lazy as _
from django.core.urlresolvers import reverse
from admin_tools.dashboard import modules, Dashboard, AppIndexDashboard
from admin_tools.utils import get_admin_site_name
class CustomIndexDashboard(Dashboard):
"""
Custom index dashboard for calmat_ng.
"""
columns = 3
def init_with_context(self, context):
site_name = get_admin_site_name(context)
# append a link list module for "quick links"
self.children.append(modules.ModelList(
_('Website Content'),
models=('pages.*',),
))
self.children.append(modules.ModelList(
_('Media'),
models=('media_manager.*',),
exclude=('media_manager.models.MediaSource',),
))
self.children.append(modules.ModelList(
_('Configurations'),
models=('categories.*',),
))
# append an app list module for "Administration"
self.children.append(modules.ModelList(
_('Administration'),
models=('django.contrib.*', ),
))
# append an app list module for "Administration"
self.children.append(modules.ModelList(
_('Robots'),
models=('robots.*', ),
))
self.children.append(modules.ModelList(
_('Business Data'),
models=('business.*',),
))
self.children.append(modules.ModelList(
_('Jobs'),
models=('employment.*',),
))
self.children.append(modules.ModelList(
_('Donations'),
models=('donation.*',),
))
# append a recent actions module
self.children.append(modules.RecentActions(_('Recent Actions'), 25))
# append a feed module
# self.children.append(modules.Feed(
# _('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(
# _('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,
# },
# ]
# ))
#
# self.children.append(modules.LinkList(
# _('Quick links'),
# layout='inline',
# draggable=False,
# deletable=False,
# collapsible=False,
# children=[
# [_('Return to site'), '/'],
# [_('Change password'),
# reverse('%s:password_change' % site_name)],
# [_('Log out'), reverse('%s:logout' % site_name)],
# ]
# ))
# append an app list module for "Applications"
# self.children.append(modules.AppList(
# _('All'),
# exclude=('django.contrib.*',),
# ))
class CustomAppIndexDashboard(AppIndexDashboard):
"""
Custom app index dashboard for calmat_ng.
"""
# we disable title because its redundant with the model list module
title = ''
def __init__(self, *args, **kwargs):
AppIndexDashboard.__init__(self, *args, **kwargs)
# append a model list module and a recent actions module
self.children += [
modules.ModelList(self.app_title, self.models),
modules.RecentActions(
_('Recent Actions'),
include_list=self.get_app_content_types(),
limit=5
)
]
def init_with_context(self, context):
"""
Use this method if you need to access the request context.
"""
return super(CustomAppIndexDashboard, self).init_with_context(context)