From 6d47dbeabdff2642442a3e22d5c54a8ed4f70bb5 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 4 Feb 2016 01:34:48 +0100 Subject: [PATCH] url --- teleforma/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/urls.py b/teleforma/urls.py index a94aa9f3..c49a4bff 100644 --- a/teleforma/urls.py +++ b/teleforma/urls.py @@ -58,8 +58,8 @@ urlpatterns = patterns('', # (r'^accounts/register0/$', RegistrationView.as_view(), {'form_class':CustomRegistrationForm}), url(r'^accounts/register/$', UserAddView.as_view(), name="teleforma-register"), url(r'^accounts/register/(?P.*)/complete/$', UserCompleteView.as_view(), name="teleforma-register-complete"), - url(r'^accounts/register/(?P.*)/download/\?format=pdf$', RegistrationPDFViewDownload.as_view(), name="teleforma-registration-download"), - url(r'^accounts/register/(?P.*)/view/\?format=pdf$', RegistrationPDFView.as_view(), name="teleforma-registration-view"), + url(r'^accounts/register/(?P.*)/download/\?format=pdf', RegistrationPDFViewDownload.as_view(), name="teleforma-registration-download"), + url(r'^accounts/register/(?P.*)/view/\?format=pdf', RegistrationPDFView.as_view(), name="teleforma-registration-view"), url(r'^captcha/', include('captcha.urls')), -- 2.39.5