]> git.parisson.com Git - teleforma.git/commitdiff
bugfix
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 4 Feb 2016 00:28:50 +0000 (01:28 +0100)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 4 Feb 2016 00:28:50 +0000 (01:28 +0100)
teleforma/templates/registration/registration_complete.html
teleforma/urls.py

index c3c2ca7113ee82b23180ca9c1f94731403528d46..76864c322b0601ae8619d2b5e4e6e57eceb8d2a9 100644 (file)
@@ -20,7 +20,7 @@ Service inscription<br>
 75006 Paris
 <br><br><br>
 
-<a href="{% url 'teleforma-registration-download' username %}" class="component_icon button" id="action_green" target="_blank"><img src="{{STATIC_URL}}telemeta/images/download.png" alt="" style="vertical-align:middle" />&nbsp;{% trans "Download" %}</a>
+<a href="{% url teleforma-registration-download username %}" class="component_icon button" id="action_green" target="_blank"><img src="{{STATIC_URL}}telemeta/images/download.png" alt="" style="vertical-align:middle" />&nbsp;{% trans "Download" %}</a>
 
 </center>
 </div>
index 93d1b7a1512e9d4d1ab70730847505b5ece0d569..cb205dfef3cef7bcb4468b0a7402737c257ee299 100644 (file)
@@ -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<username>.*)/$', UserCompleteView.as_view(), name="teleforma-register-complete"),
+    url(r'^accounts/register/(?P<username>.*)/complete/$', UserCompleteView.as_view(), name="teleforma-register-complete"),
     url(r'^accounts/register/(?P<username>.*)/download/$', RegistrationPDFViewDownload.as_view(), name="teleforma-registration-download"),
     url(r'^accounts/register/(?P<username>.*)/view/$', RegistrationPDFView.as_view(), name="teleforma-registration-view"),