symposion_app/symposion/schedule/urls.py

16 lines
839 B
Python
Raw Normal View History

from django.conf.urls.defaults import url, patterns
urlpatterns = patterns("symposion.schedule.views",
2012-09-21 02:56:25 +00:00
url(r"^$", "schedule_detail", name="schedule_detail"),
url(r"^edit/$", "schedule_edit", name="schedule_edit"),
url(r"^list/$", "schedule_list", name="schedule_list"),
2012-10-09 19:07:55 +00:00
url(r"^presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
2012-09-21 02:38:24 +00:00
url(r"^presentation/(\d+)/$", "schedule_presentation_detail", name="schedule_presentation_detail"),
2012-09-20 02:05:05 +00:00
url(r"^(\w+)/$", "schedule_detail", name="schedule_detail"),
url(r"^(\w+)/edit/$", "schedule_edit", name="schedule_edit"),
url(r"^(\w+)/list/$", "schedule_list", name="schedule_list"),
2012-10-09 19:07:55 +00:00
url(r"^(\w+)/presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
2012-09-20 02:06:18 +00:00
url(r"^(\w+)/edit/slot/(\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
)