Revision e46a1c3f
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 |
DeleteOccurrenceView, DeleteEventView, UpdatePeriodicEventView, UpdatePeriodicAppointmentView) |
|
13 |
DeleteOccurrenceView, DeleteEventView, UpdatePeriodicEventView, UpdatePeriodicAppointmentView, |
|
14 |
PeriodicEventsView) |
|
14 | 15 |
|
15 | 16 |
agenda_patterns = patterns('', |
16 | 17 |
url(r'^$', |
... | ... | |
77 | 78 |
url(r'^ajax-worker-disponibility-column/(?P<worker_id>\d+)$', |
78 | 79 |
AjaxWorkerDisponibilityColumnView.as_view(), |
79 | 80 |
name='ajax-worker-disponibility-column'), |
81 |
url(r'^periodic-events/$', |
|
82 |
PeriodicEventsView.as_view(), |
|
83 |
name='periodic-events'), |
|
80 | 84 |
) |
81 | 85 |
|
82 | 86 |
urlpatterns = patterns('', |
Also available in: Unified diff
agenda: base work for the periodic events view (refs #2124)