Files @ 82754d23426c
Branch filter:

Location: symposion_app/symposion/schedule/urls.py

Luke Hatcher
enable proposal acceptance
1
2
3
4
5
6
7
8
9
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"),
)