Commit | Line | Data |
---|---|---|
6f2d5d58 | 1 | # -*- encoding: utf-8 -* |
b8778e64 | 2 | |
7f25c8a6 OL |
3 | from django.conf.urls.defaults import patterns, url |
4 | from auf.django.emploi import settings | |
b8778e64 | 5 | |
b24f48fd | 6 | urlpatterns = patterns('recrutement.views', |
3f5cbabe | 7 | url(r'^$', 'index', name='recrutement_index'), |
b8778e64 | 8 | |
e83ff3dd | 9 | (r'^prive/(?P<path>.*)$', 'mediaserve', {'document_root': settings.OE_PRIVE_MEDIA_ROOT}), |
7f25c8a6 | 10 | |
b8778e64 | 11 | url(r'^affecter_evaluateurs_offre_emploi/$', |
b24f48fd | 12 | 'affecter_evaluateurs_offre_emploi', |
b8778e64 NBV |
13 | name='affecter_evaluateurs_offre_emploi'), |
14 | ||
15 | url(r'^envoyer_courriel_candidats/$', | |
b24f48fd | 16 | 'envoyer_courriel_candidats', |
b8778e64 NBV |
17 | name='envoyer_courriel_candidats'), |
18 | ||
19 | url(r'^selectionner_template/$', | |
b24f48fd | 20 | 'selectionner_template', |
b8778e64 NBV |
21 | name='selectionner_template'), |
22 | ||
e83ff3dd | 23 | url(r'candidat_pdf/$', 'candidat_pdf', |
32c22f96 | 24 | name='candidat_pdf'), |
6f2d5d58 | 25 | ) |