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 django
.core
.urlresolvers
import reverse
16 from django
.utils
.translation
import ugettext_lazy
as _
17 from admin_tools
.dashboard
import modules
, Dashboard
, AppIndexDashboard
18 from project
.decorators
import in_drh_or_admin
19 from project
.rh
.historique
import get_active_revisions
21 class CustomIndexDashboard(Dashboard
):
23 Custom index dashboard for SGRH.
25 def init_with_context(self
, context
):
26 request
= context
['request']
28 # append an app list module for "Applications"
29 self
.children
.append(modules
.Group(
34 title
='Demande d\'autorisation d\'engagement',
36 'project.dae.models.*',
40 title
='Gestion des candidatures',
42 'auf.django.emploi.models.OffreEmploi',
43 'project.recrutement.models.ProxyOffreEmploi',
44 'auf.django.emploi.models.Candidat',
45 'project.recrutement.models.ProxyCandidat',
46 'project.recrutement.models.CandidatEvaluation',
47 'project.recrutement.models.MesCandidatEvaluation',
48 'project.recrutement.models.Evaluateur',
49 'project.recrutement.models.CourrielTemplate',
53 title
='Gestion des personnels',
55 'project.rh.models.AyantDroit',
56 'project.rh.models.Dossier',
57 'project.rh.models.DossierInactif',
58 'project.rh.models.Employe',
59 'project.rh.models.EmployeInactif',
60 'project.rh.models.Poste',
66 if in_drh_or_admin(request
.user
):
67 revisions
= get_active_revisions()[:10]
70 date
= rev
['short_date_created']
71 user
= u
"<span style='font-weight: bold;'>%s</span>" % rev
['user']
72 if rev
['type'] is None or rev
['objet'] is None:
73 titre
= u
"""<span style='color:black;'>[%s] %s</span>
74 commentaire : %s """ % (date
, user
, rev
['comment'])
77 'url': reverse('rhr_historique_des_modifications'),
81 type = u
"<span style='font-decoration: underligne;'>%s</span>" % rev
['type']
82 titre
= u
"""<span style='color:black;'>[%s] %s a modifié
83 un(e) %s :</span> %s""" % (date
, user
, type, rev
['objet'], )
86 'url': rev
['history_url'],
89 self
.children
.append(modules
.LinkList(
90 title
='10 dernières modifications',
96 # append an app list module for "Configuration"
97 self
.children
.append(modules
.AppList(
100 'project.rh.models.Classement',
101 'project.rh.models.Devise',
102 'project.rh.models.CategorieEmploi',
103 'project.rh.models.FamilleProfessionnelle',
104 'project.rh.models.OrganismeBstg',
105 'project.rh.models.Responsable',
106 'project.rh.models.Service',
107 'project.rh.models.Statut',
108 'project.rh.models.TauxChange',
109 'project.rh.models.TypeContrat',
110 'project.rh.models.TypePoste',
111 'project.rh.models.TypeRevalorisation',
112 'project.rh.models.TypeRemuneration',
113 'project.rh.models.ValeurPoint',
115 exclude
=('django.contrib.*',),
118 # append an app list module for "Inter-systèmes"
119 self
.children
.append(modules
.AppList(
120 _(u
'Inter-systèmes'),
122 'project.rh.models.ResponsableImplantationProxy',
126 # append an app list module for "Administration"
127 self
.children
.append(modules
.AppList(
134 class CustomAppIndexDashboard(AppIndexDashboard
):
136 Custom app index dashboard for project.
139 # we disable title because its redundant with the model list module
142 def __init__(self
, *args
, **kwargs
):
143 AppIndexDashboard
.__init__(self
, *args
, **kwargs
)
145 def init_with_context(self
, context
):
147 Use this method if you need to access the request context.
149 if self
.app_title
!= 'Rh':
150 # append a model list module and a recent actions module
152 modules
.ModelList(self
.app_title
, self
.models
),
157 # append an app list module for "Application"
158 self
.children
.append(modules
.AppList(
161 'project.rh.models.AyantDroit',
162 'project.rh.models.Dossier',
163 'project.rh.models.DossierInactif',
164 'project.rh.models.Employe',
165 'project.rh.models.EmployeInactif',
166 'project.rh.models.Poste',
170 # append an app list module for "Configuration"
171 self
.children
.append(modules
.AppList(
174 'project.rh.models.Classement',
175 'project.rh.models.Devise',
176 'project.rh.models.CategorieEmploi',
177 'project.rh.models.FamilleProfessionnelle',
178 'project.rh.models.OrganismeBstg',
179 'project.rh.models.Responsable',
180 'project.rh.models.Service',
181 'project.rh.models.Statut',
182 'project.rh.models.TauxChange',
183 'project.rh.models.TypeContrat',
184 'project.rh.models.TypePoste',
185 'project.rh.models.TypeRevalorisation',
186 'project.rh.models.TypeRemuneration',
187 'project.rh.models.ValeurPoint',
191 # append an app list module for "Inter-systèmes"
192 self
.children
.append(modules
.AppList(
193 _(u
'Inter-systèmes'),
195 'project.rh.models.ResponsableImplantation',