From: Guillaume Pellerin Date: Thu, 4 Feb 2016 00:28:50 +0000 (+0100) Subject: bugfix X-Git-Tag: 1.1~118 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f9a79d1b7f75d49e599a12796be3a900b6d4db05;p=teleforma.git bugfix --- 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"),