From f9a79d1b7f75d49e599a12796be3a900b6d4db05 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 4 Feb 2016 01:28:50 +0100 Subject: [PATCH] bugfix --- teleforma/templates/registration/registration_complete.html | 2 +- teleforma/urls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/templates/registration/registration_complete.html b/teleforma/templates/registration/registration_complete.html index c3c2ca71..76864c32 100644 --- a/teleforma/templates/registration/registration_complete.html +++ b/teleforma/templates/registration/registration_complete.html @@ -20,7 +20,7 @@ Service inscription
75006 Paris


- {% trans "Download" %} + {% trans "Download" %} diff --git a/teleforma/urls.py b/teleforma/urls.py index 93d1b7a1..cb205dfe 100644 --- a/teleforma/urls.py +++ b/teleforma/urls.py @@ -57,7 +57,7 @@ urlpatterns = patterns('', name="teleforma-login"), # (r'^accounts/register0/$', RegistrationView.as_view(), {'form_class':CustomRegistrationForm}), url(r'^accounts/register/$', UserAddView.as_view(), name="teleforma-register"), - url(r'^accounts/complete/(?P.*)/$', UserCompleteView.as_view(), name="teleforma-register-complete"), + url(r'^accounts/register/(?P.*)/complete/$', UserCompleteView.as_view(), name="teleforma-register-complete"), url(r'^accounts/register/(?P.*)/download/$', RegistrationPDFViewDownload.as_view(), name="teleforma-registration-download"), url(r'^accounts/register/(?P.*)/view/$', RegistrationPDFView.as_view(), name="teleforma-registration-view"), -- 2.39.5