Tweaked the floor-plan urls, removing an unnecessary path element.

- Legacy-Id: 11569
This commit is contained in:
Henrik Levkowetz 2016-07-08 13:03:56 +00:00
parent 9a225405fd
commit acb3f90d39

View file

@ -61,8 +61,8 @@ type_ietf_only_patterns_id_optional = [
url(r'^agenda.ics$', views.ical_agenda),
url(r'^agenda/week-view(?:.html)?/?$', views.week_view),
url(r'^agenda/room-view(?:.html)?/?$', views.room_view),
url(r'^agenda/floor-plan/?$', views.floor_plan),
url(r'^agenda/floor-plan/(?P<floor>[-a-z0-9_]+)/?$', views.floor_plan),
url(r'^floor-plan/?$', views.floor_plan),
url(r'^floor-plan/(?P<floor>[-a-z0-9_]+)/?$', views.floor_plan),
url(r'^week-view(?:.html)?/?$', views.week_view),
url(r'^room-view(?:.html)?/$', views.room_view),
url(r'^materials(?:.html)?/$', views.materials),