Commit | Line | Data |
---|---|---|
ae936f8d | 1 | # -*- encoding: utf-8 -* |
2 | from django.conf.urls.defaults import patterns, url | |
3 | ||
4 | urlpatterns = patterns( | |
5 | 'project.rh.views', | |
a9faef67 | 6 | url(r'^employes/$', 'employes_liste', name='rh_employes'), |
c9122f1d | 7 | url(r'^profil$', 'profil', name='rh_profil'), |
3411ac33 | 8 | url(r'^employes/(?P<id>\d+)$', 'employe', name='rh_employe'), |
ae936f8d | 9 | ) |