From dda271bd7e0ffe48207bc7af7853307817bb7d38 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 6 Sep 2017 14:46:49 +0000 Subject: [PATCH] Fixed another issue with the meeting materials urls, related to the href() normalisation work. - Legacy-Id: 14101 --- ietf/meeting/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/meeting/urls.py b/ietf/meeting/urls.py index b7df66ca0..bc45e4886 100644 --- a/ietf/meeting/urls.py +++ b/ietf/meeting/urls.py @@ -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),