1 # -*- encoding: utf-8 -*
2 from django
.conf
.urls
.defaults
import patterns
, url
5 urlpatterns
= patterns(
7 url(r
'^admin/rh/rapports/postes$', 'rapports_poste', name
='rhr_postes'),
8 url(r
'^admin/rh/rapports/contrats$', 'rapports_contrat', name
='rhr_contrats'),
9 url(r
'^admin/rh/rapports/remuneration$', 'rapports_remuneration', name
='rhr_remuneration'),
10 url(r
'^admin/rh/rapports/postes_par_service$', 'rapports_postes_service', name
='rhr_postes_service'),
11 url(r
'^admin/rh/rapports/postes_par_implantation$', 'rapports_postes_implantation', name
='rhr_postes_implantation'),
12 url(r
'^admin/rh/dossier/(\d+)/apercu/$', 'dossier_apercu', name
='dossier_apercu'),
13 url(r
'^admin/rh/employe/(\d+)/apercu/$', 'employe_apercu', name
='employe_apercu'),
14 url(r
'^admin/rh/poste/(\d+)/apercu/$', 'poste_apercu', name
='poste_apercu'),
15 url(r
'^prive/(?P<filename>.*)$', 'piece'),