]> git.openstreetmap.org Git - osqa.git/commitdiff
Validation email template bugfix
authorAniket Schneider <aschneider@visiblemeasures.com>
Thu, 13 Mar 2014 21:02:02 +0000 (17:02 -0400)
committerAniket Schneider <aschneider@visiblemeasures.com>
Thu, 13 Mar 2014 21:02:02 +0000 (17:02 -0400)
forum/skins/default/templates/auth/mail_validation.html

index 82029d620862c0f7dd6952ddd1a9ebbb4887cfc7..7e6a2f3022d7b4c1d2c3f5ccb13dfc0308c1582c 100644 (file)
     {% htmlcontent notifications/base.html %}
         <p style="{{ p_style }}">{% trans "Please use the following link to help us verify your email address:" %}</p>
 
-        <p style="{{ p_style }}"><a  style="{{ a_style }}" href="{% fullurl auth_validate_email user=recipient.id,code=validation_code %}">{% trans "Validate my email address" %}</a></p>
+        <p style="{{ p_style }}"><a  style="{{ a_style }}" href="{% fullurl "auth_validate_email" user=recipient.id code=validation_code %}">{% trans "Validate my email address" %}</a></p>
 
         <p style="{{ p_style }}">{% trans "If the above link is not clickable, copy and paste this url into your web browser's address bar:" %}</p>
 
-        <p style="{{ p_style }}">{% fullurl auth_validate_email user=recipient.id,code=validation_code %}</p>
+        <p style="{{ p_style }}">{% fullurl "auth_validate_email" user=recipient.id code=validation_code %}</p>
     {% endhtmlcontent %}
 
 {% textcontent notifications/base_text.html %}
 {% trans "Copy and paste this url into your web browser's address bar to help us verify your email address:" %}
 
-{% fullurl auth_validate_email user=recipient.id,code=validation_code %}
+{% fullurl "auth_validate_email" user=recipient.id code=validation_code %}
 {% endtextcontent %}
 
 {% endemail %}