Mercurial > public > sg101
annotate gpp/templates/accounts/password_reset_confirm.html @ 197:2baadae33f2e
Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 10 Apr 2010 04:32:24 +0000 |
parents | 6a5549c2efb5 |
children | daa2916f5b34 |
rev | line source |
---|---|
bgneal@79 | 1 {% extends 'base.html' %} |
bgneal@79 | 2 {% block title %}Reset Password{% endblock %} |
bgneal@79 | 3 {% block content %} |
bgneal@79 | 4 <h2>Reset Password</h2> |
bgneal@79 | 5 {% if validlink %} |
bgneal@79 | 6 <p> |
bgneal@79 | 7 Please use the following form to reset your password. |
bgneal@79 | 8 </p> |
bgneal@194 | 9 <form method="post" action=".">{% csrf_token %} |
bgneal@79 | 10 <table> |
bgneal@79 | 11 {{ form.as_table }} |
bgneal@79 | 12 <tr><td> </td><td><input type="submit" value="Reset Password" /> |
bgneal@79 | 13 </td></tr> |
bgneal@79 | 14 </table> |
bgneal@79 | 15 </form> |
bgneal@79 | 16 {% else %} |
bgneal@79 | 17 <p> |
bgneal@79 | 18 We're sorry, the link you provided is invalid or has expired. If you are trying to |
bgneal@79 | 19 reset your password, please <a href="{% url accounts-password_reset %}">try again</a>. |
bgneal@79 | 20 If you have questions or problems, please <a href="{% url contact-form %}">contact us</a>. |
bgneal@79 | 21 </p> |
bgneal@79 | 22 {% endif %} |
bgneal@79 | 23 {% endblock %} |