comparison gpp/templates/accounts/password_reset_confirm.html @ 310:daa2916f5b34

Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Jan 2011 04:03:48 +0000
parents 6a5549c2efb5
children
comparison
equal deleted inserted replaced
309:8a0bae48b6ca 310:daa2916f5b34
1 {% extends 'base.html' %} 1 {% extends 'base.html' %}
2 {% load url from future %}
2 {% block title %}Reset Password{% endblock %} 3 {% block title %}Reset Password{% endblock %}
3 {% block content %} 4 {% block content %}
4 <h2>Reset Password</h2> 5 <h2>Reset Password</h2>
5 {% if validlink %} 6 {% if validlink %}
6 <p> 7 <p>
14 </table> 15 </table>
15 </form> 16 </form>
16 {% else %} 17 {% else %}
17 <p> 18 <p>
18 We're sorry, the link you provided is invalid or has expired. If you are trying to 19 We're sorry, the link you provided is invalid or has expired. If you are trying to
19 reset your password, please <a href="{% url accounts-password_reset %}">try again</a>. 20 reset your password, please <a href="{% url 'accounts-password_reset' %}">try again</a>.
20 If you have questions or problems, please <a href="{% url contact-form %}">contact us</a>. 21 If you have questions or problems, please <a href="{% url 'contact-form' %}">contact us</a>.
21 </p> 22 </p>
22 {% endif %} 23 {% endif %}
23 {% endblock %} 24 {% endblock %}