Add missing $ at the end of the MKTG URLs

This commit is contained in:
Bertrand Marron
2014-06-17 20:03:31 +02:00
parent 086373388b
commit 573eda0d61

View File

@@ -152,7 +152,7 @@ for key, value in settings.MKTG_URL_LINK_MAP.items():
# Make the assumption that the URL we want is the lowercased
# version of the map key
urlpatterns += (url(r'^%s' % key.lower(),
urlpatterns += (url(r'^%s$' % key.lower(),
'static_template_view.views.render',
{'template': template}, name=value),)