Revision 3e9b47e9
Added by Benjamin Dauvergne over 12 years ago
calebasse/agenda/urls.py | ||
---|---|---|
10 | 10 |
UpdateEventView, AgendaServiceActValidationView, AutomatedValidationView, |
11 | 11 |
UnlockAllView, AgendasTherapeutesView, JoursNonVerrouillesView, |
12 | 12 |
RessourcesView, AjaxWorkerTabView, AjaxWorkerDisponibilityColumnView, |
13 |
DeleteEventView) |
|
13 |
DeleteEventView, UpdatePeriodicEventView, UpdatePeriodicAppointmentView)
|
|
14 | 14 |
|
15 | 15 |
agenda_patterns = patterns('', |
16 | 16 |
url(r'^$', |
... | ... | |
23 | 23 |
url(r'^update-rdv/(?P<pk>\d+)$', |
24 | 24 |
UpdateAppointmentView.as_view(), |
25 | 25 |
name='update-rdv'), |
26 |
url(r'^update-periodic-rdv/(?P<pk>\d+)$', |
|
27 |
UpdatePeriodicAppointmentView.as_view(), |
|
28 |
name='update-periodic-rdv'), |
|
26 | 29 |
url(r'^new-event/$', |
27 | 30 |
NewEventView.as_view(), |
28 | 31 |
name='new-event'), |
29 | 32 |
url(r'^update-event/(?P<pk>\d+)$', |
30 | 33 |
UpdateEventView.as_view(), |
31 | 34 |
name='update-event'), |
35 |
url(r'^update-periodic-event/(?P<pk>\d+)$', |
|
36 |
UpdatePeriodicEventView.as_view(), |
|
37 |
name='update-periodic-event'), |
|
32 | 38 |
url(r'^delete-event/(?P<pk>\d+)$', |
33 | 39 |
validator_only(csrf_exempt(DeleteEventView.as_view())), |
34 | 40 |
name='delete-event'), |
Also available in: Unified diff
agenda: add editing of periodic events