1 # -*- encoding: utf-8 -*
4 This file was generated with the customdashboard management command, it
5 contains the two classes for the main dashboard and app index dashboard.
6 You can customize these classes as you want.
8 To activate your index dashboard add the following to your settings.py::
9 ADMIN_TOOLS_INDEX_DASHBOARD = 'SIGMA.dashboard.CustomIndexDashboard'
11 And to activate the app index dashboard::
12 ADMIN_TOOLS_APP_INDEX_DASHBOARD = 'SIGMA.dashboard.CustomAppIndexDashboard'
15 from admin_tools
.dashboard
import modules
, Dashboard
, AppIndexDashboard
16 from django
.utils
.translation
import ugettext_lazy
as _
17 from reversion
.models
import Revision
18 from project
.decorators
import in_drh_or_admin
19 from project
.rh
.historique
import format_revisions
21 class CustomIndexDashboard(Dashboard
):
23 Custom index dashboard for SIGMA.
25 def init_with_context(self
, context
):
26 request
= context
['request']
28 # append an app list module for "Applications"
29 self
.children
.append(modules
.AppList(
32 'project.dae.models.*',
33 'project.recrutement.models.*',
34 'project.rh.models.AyantDroit',
35 'project.rh.models.Dossier',
36 'project.rh.models.DossierInactif',
37 'project.rh.models.Employe',
38 'project.rh.models.EmployeInactif',
39 'project.rh.models.Poste',
43 if in_drh_or_admin(request
.user
):
44 revisions
= format_revisions(
45 Revision
.objects
.exclude(user__isnull
=True).order_by('-date_created')[:10])
48 date
= rev
['short_date_created']
49 user
= u
"<span style='font-weight: bold;'>%s</span>" % rev
['user']
50 type = u
"<span style='font-decoration: underligne;'>%s</span>" % rev
['type']
51 titre
= u
"""<span style='color:black;'>[%s] %s a modifié
52 un(e) %s :</span> %s""" % (date
, user
, type, rev
['objet'], )
55 'url': rev
['history_url'],
58 self
.children
.append(modules
.LinkList(
59 title
='10 dernières modifications',
65 # append an app list module for "Configuration"
66 self
.children
.append(modules
.AppList(
69 'project.rh.models.Classement',
70 'project.rh.models.Devise',
71 'project.rh.models.CategorieEmploi',
72 'project.rh.models.FamilleProfessionnelle',
73 'project.rh.models.OrganismeBstg',
74 'project.rh.models.Responsable',
75 'project.rh.models.Service',
76 'project.rh.models.Statut',
77 'project.rh.models.TauxChange',
78 'project.rh.models.TypeContrat',
79 'project.rh.models.TypePoste',
80 'project.rh.models.TypeRevalorisation',
81 'project.rh.models.TypeRemuneration',
82 'project.rh.models.ValeurPoint',
84 exclude
=('django.contrib.*',),
87 # append an app list module for "Inter-systèmes"
88 self
.children
.append(modules
.AppList(
91 'project.rh.models.ResponsableImplantationProxy',
95 # append an app list module for "Administration"
96 self
.children
.append(modules
.AppList(
103 class CustomAppIndexDashboard(AppIndexDashboard
):
105 Custom app index dashboard for project.
108 # we disable title because its redundant with the model list module
111 def __init__(self
, *args
, **kwargs
):
112 AppIndexDashboard
.__init__(self
, *args
, **kwargs
)
114 def init_with_context(self
, context
):
116 Use this method if you need to access the request context.
118 if self
.app_title
!= 'Rh':
119 # append a model list module and a recent actions module
121 modules
.ModelList(self
.app_title
, self
.models
),
126 # append an app list module for "Application"
127 self
.children
.append(modules
.AppList(
130 'project.rh.models.AyantDroit',
131 'project.rh.models.Dossier',
132 'project.rh.models.DossierInactif',
133 'project.rh.models.Employe',
134 'project.rh.models.EmployeInactif',
135 'project.rh.models.Poste',
139 # append an app list module for "Configuration"
140 self
.children
.append(modules
.AppList(
143 'project.rh.models.Classement',
144 'project.rh.models.Devise',
145 'project.rh.models.CategorieEmploi',
146 'project.rh.models.FamilleProfessionnelle',
147 'project.rh.models.OrganismeBstg',
148 'project.rh.models.Responsable',
149 'project.rh.models.Service',
150 'project.rh.models.Statut',
151 'project.rh.models.TauxChange',
152 'project.rh.models.TypeContrat',
153 'project.rh.models.TypePoste',
154 'project.rh.models.TypeRevalorisation',
155 'project.rh.models.TypeRemuneration',
156 'project.rh.models.ValeurPoint',
160 # append an app list module for "Inter-systèmes"
161 self
.children
.append(modules
.AppList(
162 _(u
'Inter-systèmes'),
164 'project.rh.models.ResponsableImplantation',