comparison gpp/templates/accounts/password_reset_complete.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 4edfea7f8620
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 %}Password Reset Complete{% endblock %} 3 {% block title %}Password Reset Complete{% endblock %}
3 {% block content %} 4 {% block content %}
4 <h2>Password Reset Complete</h2> 5 <h2>Password Reset Complete</h2>
5 <p> 6 <p>
6 Your password has been successfully changed. You may now <a href="{% url accounts-login %}">login</a>. 7 Your password has been successfully changed. You may now <a href="{% url 'accounts-login' %}">login</a>.
7 </p> 8 </p>
8 {% endblock %} 9 {% endblock %}