ADMIN_TOOLS_APP_INDEX_DASHBOARD = 'SIGMA.dashboard.CustomAppIndexDashboard'
"""
-from django.utils.translation import ugettext_lazy as _
from django.core.urlresolvers import reverse
-
+from django.utils.translation import ugettext_lazy as _
from admin_tools.dashboard import modules, Dashboard, AppIndexDashboard
-from admin_tools.utils import get_admin_site_name
-
+from project.decorators import in_drh_or_admin
+from project.rh.historique import get_active_revisions
class CustomIndexDashboard(Dashboard):
"""
- Custom index dashboard for SIGMA.
+ Custom index dashboard for SGRH.
"""
def init_with_context(self, context):
- site_name = get_admin_site_name(context)
+ request = context['request']
# append an app list module for "Applications"
- self.children.append(modules.AppList(
+ self.children.append(modules.Group(
_('Applications'),
- models=(
- 'project.dae.models.*',
- 'project.recrutement.models.*',
- 'project.rh.models.AyantDroit',
- 'project.rh.models.Dossier',
- 'project.rh.models.DossierInactif',
- 'project.rh.models.Employe',
- 'project.rh.models.EmployeInactif',
- 'project.rh.models.Poste',
- ),
+ display='stacked',
+ children=[
+ modules.ModelList(
+ title='Demande d\'autorisation d\'engagement',
+ models=(
+ 'project.dae.models.*',
+ )
+ ),
+ modules.ModelList(
+ title='Recrutement',
+ models=(
+ 'auf.django.emploi.models.OffreEmploi',
+ 'project.recrutement.models.ProxyOffreEmploi',
+ 'auf.django.emploi.models.Candidat',
+ 'project.recrutement.models.ProxyCandidat',
+ 'project.recrutement.models.CandidatEvaluation',
+ 'project.recrutement.models.MesCandidatEvaluation',
+ 'project.recrutement.models.Evaluateur',
+ 'project.recrutement.models.OffreEmploiEvaluateur',
+ 'project.recrutement.models.CourrielTemplate',
+ )
+ ),
+ modules.ModelList(
+ title='Gestion des personnels',
+ models=(
+ 'project.rh.models.AyantDroit',
+ 'project.rh.models.Dossier',
+ 'project.rh.models.DossierInactif',
+ 'project.rh.models.Employe',
+ 'project.rh.models.EmployeInactif',
+ 'project.rh.models.Poste',
+ )
+ ),
+ modules.ModelList(
+ title='Log',
+ models=(
+ 'project.rh.models.ChangementPersonnel',
+ )
+ ),
+ ]
))
+
+ if in_drh_or_admin(request.user):
+ revisions = get_active_revisions()[:10]
+ children = []
+ for rev in revisions:
+ date = rev['short_date_created']
+ user = u"<span style='font-weight: bold;'>%s</span>" % rev['user']
+ if rev['type'] is None or rev['objet'] is None:
+ titre = u"""<span style='color:black;'>[%s] %s</span>
+ commentaire : %s """ % (date, user, rev['comment'])
+ children.append({
+ 'title': titre,
+ 'url': reverse('rhr_historique_des_modifications'),
+ 'external': False,
+ })
+ else:
+ type = u"<span style='font-decoration: underligne;'>%s</span>" % rev['type']
+ titre = u"""<span style='color:black;'>[%s] %s a modifié
+ un(e) %s :</span> %s""" % (date, user, type, rev['objet'], )
+ children.append({
+ 'title': titre,
+ 'url': rev['history_url'],
+ 'external': False,
+ })
+ self.children.append(modules.LinkList(
+ title='10 dernières modifications',
+ children=children,)
+ )
+
+
+
# append an app list module for "Configuration"
self.children.append(modules.AppList(
_('Configuration'),
models=(
- 'project.rh.models.Classement',
- 'project.rh.models.Devise',
- 'project.rh.models.FamilleEmploi',
- 'project.rh.models.OrganismeBstg',
- 'project.rh.models.Responsable',
- 'project.rh.models.Service',
- 'project.rh.models.Statut',
- 'project.rh.models.TauxChange',
- 'project.rh.models.TypeContrat',
- 'project.rh.models.TypePoste',
- 'project.rh.models.TypeRevalorisation',
- 'project.rh.models.TypeRemuneration',
- 'project.rh.models.ValeurPoint',
+ 'project.rh.models.Classement',
+ 'project.rh.models.Devise',
+ 'project.rh.models.CategorieEmploi',
+ 'project.rh.models.FamilleProfessionnelle',
+ 'project.rh.models.OrganismeBstg',
+ 'project.rh.models.Responsable',
+ 'project.rh.models.Service',
+ 'project.rh.models.Statut',
+ 'project.rh.models.TauxChange',
+ 'project.rh.models.TypeContrat',
+ 'project.rh.models.TypePoste',
+ 'project.rh.models.TypeRevalorisation',
+ 'project.rh.models.TypeRemuneration',
+ 'project.rh.models.ValeurPoint',
+ 'project.rh.models.ChangementPersonnelNotifications',
),
exclude=('django.contrib.*',),
))
self.children.append(modules.AppList(
_(u'Inter-systèmes'),
models=(
- 'project.rh.models.ResponsableImplantation',
+ 'project.rh.models.ResponsableImplantationProxy',
),
))
self.children.append(modules.AppList(
_('Administration'),
models=(
- 'django.contrib.*',
+ 'django.contrib.*',
),
))
- # append a recent actions module
- #self.children.append(modules.RecentActions(_('Recent Actions'), 5))
-
-
class CustomAppIndexDashboard(AppIndexDashboard):
"""
Custom app index dashboard for project.
if self.app_title != 'Rh':
# append a model list module and a recent actions module
self.children += [
- modules.ModelList(self.app_title,self.models),
- #modules.RecentActions(
- # _('Recent Actions'),
- # include_list=self.get_app_content_types(),
- # limit=5
- #)
+ modules.ModelList(self.app_title, self.models),
]
return
self.children.append(modules.AppList(
_('Application'),
models=(
- 'project.rh.models.AyantDroit',
- 'project.rh.models.Dossier',
- 'project.rh.models.DossierInactif',
- 'project.rh.models.Employe',
- 'project.rh.models.EmployeInactif',
- 'project.rh.models.Poste',
+ 'project.rh.models.AyantDroit',
+ 'project.rh.models.Dossier',
+ 'project.rh.models.DossierInactif',
+ 'project.rh.models.Employe',
+ 'project.rh.models.EmployeInactif',
+ 'project.rh.models.Poste',
),
))
self.children.append(modules.AppList(
_('Configuration'),
models=(
- 'project.rh.models.Classement',
- 'project.rh.models.Devise',
- 'project.rh.models.FamilleEmploi',
- 'project.rh.models.OrganismeBstg',
- 'project.rh.models.Responsable',
- 'project.rh.models.Service',
- 'project.rh.models.Statut',
- 'project.rh.models.TauxChange',
- 'project.rh.models.TypeContrat',
- 'project.rh.models.TypePoste',
- 'project.rh.models.TypeRevalorisation',
- 'project.rh.models.TypeRemuneration',
- 'project.rh.models.ValeurPoint',
+ 'project.rh.models.Classement',
+ 'project.rh.models.Devise',
+ 'project.rh.models.CategorieEmploi',
+ 'project.rh.models.FamilleProfessionnelle',
+ 'project.rh.models.OrganismeBstg',
+ 'project.rh.models.Responsable',
+ 'project.rh.models.Service',
+ 'project.rh.models.Statut',
+ 'project.rh.models.TauxChange',
+ 'project.rh.models.TypeContrat',
+ 'project.rh.models.TypePoste',
+ 'project.rh.models.TypeRevalorisation',
+ 'project.rh.models.TypeRemuneration',
+ 'project.rh.models.ValeurPoint',
),
))
self.children.append(modules.AppList(
_(u'Inter-systèmes'),
models=(
- 'project.rh.models.ResponsableImplantation',
+ 'project.rh.models.ResponsableImplantation',
),
))
-
- # append a recent actions module
- #self.children.append(modules.RecentActions(
- # _('Recent Actions'),
- # include_list=self.get_app_content_types(),
- # limit=5
- #))