symposion_app/symposion/schedule/urls.py

12 lines
533 B
Python
Raw Normal View History

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"),
2012-08-31 04:55:37 +00:00
url(r"^edit/slot/(?P<slot_pk>\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
2012-08-31 05:50:00 +00:00
url(r"^list/$", "schedule_list", name="schedule_list"),
)