Files @ 1f9ceed0e1f2
Branch filter:

Location: symposion_app/symposion/schedule/urls.py

Brian Rosner
added notification template handling in result_notification_prepare
from django.conf.urls.defaults import url, patterns


urlpatterns = patterns("symposion.schedule.views",
    url(r"^$", "schedule_detail", name="schedule_detail_singleton"),
    url(r"^edit/$", "schedule_edit", name="schedule_edit_singleton"),
    url(r"^(\w+)/edit/$", "schedule_detail", name="schedule_detail"),
    url(r"^(\w+)/edit/$", "schedule_edit", name="schedule_edit"),
    url(r"^edit/slot/(?P<slot_pk>\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
    url(r"^list/$", "schedule_list", name="schedule_list"),
)