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(Revision
.objects
.order_by('-date_created')[:10])
48 'title': u
"%s: %s %s (%s)" % (rev
['date_created'],
49 rev
['type'], rev
['objet'], rev
['comment']),
53 self
.children
.append(modules
.LinkList(
54 title
='10 dernières modifications',
60 # append an app list module for "Configuration"
61 self
.children
.append(modules
.AppList(
64 'project.rh.models.Classement',
65 'project.rh.models.Devise',
66 'project.rh.models.CategorieEmploi',
67 'project.rh.models.FamilleProfessionnelle',
68 'project.rh.models.OrganismeBstg',
69 'project.rh.models.Responsable',
70 'project.rh.models.Service',
71 'project.rh.models.Statut',
72 'project.rh.models.TauxChange',
73 'project.rh.models.TypeContrat',
74 'project.rh.models.TypePoste',
75 'project.rh.models.TypeRevalorisation',
76 'project.rh.models.TypeRemuneration',
77 'project.rh.models.ValeurPoint',
79 exclude
=('django.contrib.*',),
82 # append an app list module for "Inter-systèmes"
83 self
.children
.append(modules
.AppList(
86 'project.rh.models.ResponsableImplantationProxy',
90 # append an app list module for "Administration"
91 self
.children
.append(modules
.AppList(
98 class CustomAppIndexDashboard(AppIndexDashboard
):
100 Custom app index dashboard for project.
103 # we disable title because its redundant with the model list module
106 def __init__(self
, *args
, **kwargs
):
107 AppIndexDashboard
.__init__(self
, *args
, **kwargs
)
109 def init_with_context(self
, context
):
111 Use this method if you need to access the request context.
113 if self
.app_title
!= 'Rh':
114 # append a model list module and a recent actions module
116 modules
.ModelList(self
.app_title
, self
.models
),
121 # append an app list module for "Application"
122 self
.children
.append(modules
.AppList(
125 'project.rh.models.AyantDroit',
126 'project.rh.models.Dossier',
127 'project.rh.models.DossierInactif',
128 'project.rh.models.Employe',
129 'project.rh.models.EmployeInactif',
130 'project.rh.models.Poste',
134 # append an app list module for "Configuration"
135 self
.children
.append(modules
.AppList(
138 'project.rh.models.Classement',
139 'project.rh.models.Devise',
140 'project.rh.models.CategorieEmploi',
141 'project.rh.models.FamilleProfessionnelle',
142 'project.rh.models.OrganismeBstg',
143 'project.rh.models.Responsable',
144 'project.rh.models.Service',
145 'project.rh.models.Statut',
146 'project.rh.models.TauxChange',
147 'project.rh.models.TypeContrat',
148 'project.rh.models.TypePoste',
149 'project.rh.models.TypeRevalorisation',
150 'project.rh.models.TypeRemuneration',
151 'project.rh.models.ValeurPoint',
155 # append an app list module for "Inter-systèmes"
156 self
.children
.append(modules
.AppList(
157 _(u
'Inter-systèmes'),
159 'project.rh.models.ResponsableImplantation',