~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to django/contrib/admin/templates/registration/password_change_form.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
<form action="" method="post">
15
15
 
16
 
{% if form.old_password.errors %}{{ form.old_password.html_error_list }}{% endif %}
 
16
{% if form.old_password.errors %}{{ form.old_password.errors }}{% endif %}
17
17
<p class="aligned wide"><label for="id_old_password">{% trans 'Old password:' %}</label>{{ form.old_password }}</p>
18
 
{% if form.new_password1.errors %}{{ form.new_password1.html_error_list }}{% endif %}
 
18
{% if form.new_password1.errors %}{{ form.new_password1.errors }}{% endif %}
19
19
<p class="aligned wide"><label for="id_new_password1">{% trans 'New password:' %}</label>{{ form.new_password1 }}</p>
20
 
{% if form.new_password2.errors %}{{ form.new_password2.html_error_list }}{% endif %}
 
20
{% if form.new_password2.errors %}{{ form.new_password2.errors }}{% endif %}
21
21
<p class="aligned wide"><label for="id_new_password2">{% trans 'Confirm password:' %}</label>{{ form.new_password2 }}</p>
22
22
 
23
23
<p><input type="submit" value="{% trans 'Change my password' %}" /></p>