-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.py
135 lines (124 loc) · 4.77 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
"""
This file was generated with the customdashboard management command and
contains the class for the main dashboard.
To activate your index dashboard add the following to your settings.py::
GRAPPELLI_INDEX_DASHBOARD = 'museum_of_dreams_project.dashboard.CustomIndexDashboard'
"""
from django.utils.translation import gettext_lazy as _
from grappelli.dashboard import modules, Dashboard
from grappelli.dashboard.utils import get_admin_site_name
class CustomIndexDashboard(Dashboard):
"""
Custom index dashboard for museumofdream(world)s
"""
def init_with_context(self, context):
site_name = get_admin_site_name(context)
# append a group for "Administration"
self.children.append(
modules.Group(
_("Group: Administration & Applications"),
column=3,
collapsible=True,
children=[
modules.AppList(
_("Auth"),
column=1,
collapsible=False,
models=("django.contrib.*",),
),
],
)
)
# append a group for the models
self.children.append(
modules.Group(
_("Models"),
column=1,
collapsible=True,
children=[
modules.ModelList(
_("Main Models"),
column=1,
collapsible=False,
models=(
"mod_app.models.film_model.*",
"mod_app.models.teaching_analysis_models.*",
"mod_app.models.bibliography_model.*",
"mod_app.models.project_note_model.ProjectNote",
),
),
modules.ModelList(
_("Printed Material"),
collapsible=False,
models=(
"mod_app.models.support_models.Script",
"mod_app.models.support_models.PressBook",
"mod_app.models.support_models.Programme",
"mod_app.models.support_models.Publicity",
),
),
modules.ModelList(
_("Visual Resources"),
column=1,
collapsible=False,
models=(
"mod_app.models.support_models.Still",
"mod_app.models.support_models.Postcard",
"mod_app.models.support_models.Poster",
"mod_app.models.support_models.Drawing",
),
),
modules.ModelList(
_("Extras"),
column=1,
collapsible=False,
models=(
"mod_app.models.support_models.Video",
"mod_app.models.support_models.Source",
"mod_app.models.support_models.OtherLink",
"mod_app.models.support_models.Tag",
"mod_app.models.feedback_model.Feedback",
),
),
],
)
)
# # append another link list module for "support"
# # this needs some extra setup, possibly Pillow
# self.children.append(
# modules.LinkList(
# _("Media Management"),
# column=2,
# children=[
# {
# "title": _("FileBrowser"),
# "url": "/admin/filebrowser/browse/",
# "external": False,
# },
# ],
# )
# )
# append another link list module for "support".
self.children.append(
modules.LinkList(
_("Support"),
column=3,
children=[
{
"title": _("How to use the Admin Interface"),
"url": "https://github.com/UCL-ARC/museum_of_dreams/wiki/Using-the-Admin-Interface",
"external": True,
"header": True,
},
],
)
)
# append a recent actions module
self.children.append(
modules.RecentActions(
_("Recent actions"),
limit=10,
collapsible=False,
column=2,
)
)