Project

General

Profile

« Previous | Next » 

Revision 3e9b47e9

Added by Benjamin Dauvergne about 13 years ago

agenda: add editing of periodic events

View differences:

calebasse/agenda/urls.py
UpdateEventView, AgendaServiceActValidationView, AutomatedValidationView,
UnlockAllView, AgendasTherapeutesView, JoursNonVerrouillesView,
RessourcesView, AjaxWorkerTabView, AjaxWorkerDisponibilityColumnView,
DeleteEventView)
DeleteEventView, UpdatePeriodicEventView, UpdatePeriodicAppointmentView)
agenda_patterns = patterns('',
url(r'^$',
......
url(r'^update-rdv/(?P<pk>\d+)$',
UpdateAppointmentView.as_view(),
name='update-rdv'),
url(r'^update-periodic-rdv/(?P<pk>\d+)$',
UpdatePeriodicAppointmentView.as_view(),
name='update-periodic-rdv'),
url(r'^new-event/$',
NewEventView.as_view(),
name='new-event'),
url(r'^update-event/(?P<pk>\d+)$',
UpdateEventView.as_view(),
name='update-event'),
url(r'^update-periodic-event/(?P<pk>\d+)$',
UpdatePeriodicEventView.as_view(),
name='update-periodic-event'),
url(r'^delete-event/(?P<pk>\d+)$',
validator_only(csrf_exempt(DeleteEventView.as_view())),
name='delete-event'),

Also available in: Unified diff