Commit | Line | Data |
---|---|---|
8846b99e OL |
1 | # -*- encoding: utf-8 -* |
2 | ||
3 | """ | |
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. | |
7 | ||
8 | To activate your index dashboard add the following to your settings.py:: | |
9 | ADMIN_TOOLS_INDEX_DASHBOARD = 'SIGMA.dashboard.CustomIndexDashboard' | |
10 | ||
11 | And to activate the app index dashboard:: | |
12 | ADMIN_TOOLS_APP_INDEX_DASHBOARD = 'SIGMA.dashboard.CustomAppIndexDashboard' | |
13 | """ | |
14 | ||
15 | from django.utils.translation import ugettext_lazy as _ | |
16 | from django.core.urlresolvers import reverse | |
17 | ||
18 | from admin_tools.dashboard import modules, Dashboard, AppIndexDashboard | |
19 | from admin_tools.utils import get_admin_site_name | |
20 | ||
21 | ||
22 | class CustomIndexDashboard(Dashboard): | |
23 | """ | |
24 | Custom index dashboard for SIGMA. | |
25 | """ | |
26 | def init_with_context(self, context): | |
27 | site_name = get_admin_site_name(context) | |
28 | ||
29 | # append an app list module for "Applications" | |
30 | self.children.append(modules.AppList( | |
31 | _('Applications'), | |
d69f7f42 DB |
32 | models=( |
33 | 'project.dae.models.*', | |
34 | 'project.recrutement.models.*', | |
56fdab08 | 35 | 'project.rh.models.AyantDroit', |
d69f7f42 DB |
36 | 'project.rh.models.Dossier', |
37 | 'project.rh.models.Employe', | |
38 | 'project.rh.models.Poste', | |
39 | ), | |
40 | )) | |
41 | ||
42 | # append an app list module for "Configuration" | |
43 | self.children.append(modules.AppList( | |
44 | _('Configuration'), | |
45 | models=( | |
56fdab08 OL |
46 | 'project.rh.models.Classement', |
47 | 'project.rh.models.Devise', | |
48 | 'project.rh.models.FamilleEmploi', | |
49 | 'project.rh.models.OrganismeBstg', | |
50 | 'project.rh.models.Responsable', | |
51 | 'project.rh.models.Service', | |
52 | 'project.rh.models.Statut', | |
53 | 'project.rh.models.TauxChange', | |
54 | 'project.rh.models.TypeContrat', | |
55 | 'project.rh.models.TypePoste', | |
56 | 'project.rh.models.TypeRevalorisation', | |
57 | 'project.rh.models.TypeRemuneration', | |
58 | 'project.rh.models.ValeurPoint', | |
59 | ), | |
8846b99e OL |
60 | )) |
61 | ||
d69f7f42 DB |
62 | # append an app list module for "Inter-systèmes" |
63 | self.children.append(modules.AppList( | |
64 | _(u'Inter-systèmes'), | |
65 | models=( | |
66 | 'project.rh.models.ResponsableImplantation', | |
67 | ), | |
68 | )) | |
69 | ||
8846b99e OL |
70 | # append an app list module for "Administration" |
71 | self.children.append(modules.AppList( | |
72 | _('Administration'), | |
d69f7f42 DB |
73 | models=( |
74 | 'django.contrib.*', | |
75 | ), | |
8846b99e OL |
76 | )) |
77 | ||
78 | # append a recent actions module | |
79 | self.children.append(modules.RecentActions(_('Recent Actions'), 5)) |