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-20 20:56:25 -06: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 15:07:55 -04:00
url(r"^presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
2012-09-20 20:38:24 -06:00
url(r"^presentation/(\d+)/$", "schedule_presentation_detail", name="schedule_presentation_detail"),
2012-09-19 20:05:05 -06: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 15:07:55 -04:00
url(r"^(\w+)/presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
2012-09-19 20:06:18 -06:00
url(r"^(\w+)/edit/slot/(\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
)