Skip to content

Commit

Permalink
allow dashes in slugs of schedule names
Browse files Browse the repository at this point in the history
  • Loading branch information
trbs committed Jan 15, 2013
1 parent 292bf16 commit 17f9e53
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions symposion/schedule/urls.py
Expand Up @@ -7,9 +7,9 @@
url(r"^list/$", "schedule_list", name="schedule_list"),
url(r"^presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
url(r"^presentation/(\d+)/$", "schedule_presentation_detail", name="schedule_presentation_detail"),
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"),
url(r"^(\w+)/presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
url(r"^(\w+)/edit/slot/(\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
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"),
url(r"^([\w\-]+)/presentations.csv$", "schedule_list_csv", name="schedule_list_csv"),
url(r"^([\w\-]+)/edit/slot/(\d+)/", "schedule_slot_edit", name="schedule_slot_edit"),
)

0 comments on commit 17f9e53

Please sign in to comment.