Fixed another issue with the meeting materials urls, related to the href() normalisation work.

- Legacy-Id: 14101
This commit is contained in:
Henrik Levkowetz 2017-09-06 14:46:49 +00:00
parent 95a5400dea
commit dda271bd7e

View file

@ -80,7 +80,7 @@ type_ietf_only_patterns_id_optional = [
url(r'^week-view(?:.html)?/?$', views.week_view),
url(r'^room-view(?:.html)?/?$', views.room_view),
url(r'^materials(?:.html)?/?$', views.materials),
url(r'^materials/%(document)s$' % settings.URL_REGEXPS, views.materials_document),
url(r'^materials/%(document)s/?$' % settings.URL_REGEXPS, views.materials_document),
url(r'^session/?$', views.materials_editable_groups),
url(r'^proceedings(?:.html)?/?$', views.proceedings),
url(r'^proceedings(?:.html)?/finalize/?$', views.finalize_proceedings),