diff options
| author | Tim Graham <timograham@gmail.com> | 2014-03-24 08:49:05 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-03-29 08:54:56 -0400 |
| commit | ed4c2e1c0d9e43c09767b02fd8b4bd74a5dfe512 (patch) | |
| tree | cc03a9a13eead6071be80de13402971a09f860f0 | |
| parent | 2cc8840397bff8e5f99a7a2486dd295c42769e65 (diff) | |
Fixed #22329 -- Used label_tag() in some admin auth templates.
refs #17922.
| -rw-r--r-- | django/contrib/admin/forms.py | 7 | ||||
| -rw-r--r-- | django/contrib/admin/sites.py | 2 | ||||
| -rw-r--r-- | django/contrib/admin/templates/admin/auth/user/change_password.html | 6 | ||||
| -rw-r--r-- | django/contrib/admin/templates/admin/login.html | 4 | ||||
| -rw-r--r-- | django/contrib/admin/templates/registration/password_change_form.html | 6 | ||||
| -rw-r--r-- | django/contrib/auth/forms.py | 1 |
6 files changed, 16 insertions, 10 deletions
diff --git a/django/contrib/admin/forms.py b/django/contrib/admin/forms.py index f3ed7a8017..ede6f257ad 100644 --- a/django/contrib/admin/forms.py +++ b/django/contrib/admin/forms.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals from django import forms -from django.contrib.auth.forms import AuthenticationForm +from django.contrib.auth.forms import AuthenticationForm, PasswordChangeForm from django.utils.translation import ugettext_lazy as _ @@ -15,6 +15,7 @@ class AdminAuthenticationForm(AuthenticationForm): "for a staff account. Note that both fields may be " "case-sensitive."), } + required_css_class = 'required' def confirm_login_allowed(self, user): if not user.is_active or not user.is_staff: @@ -23,3 +24,7 @@ class AdminAuthenticationForm(AuthenticationForm): code='invalid_login', params={'username': self.username_field.verbose_name} ) + + +class AdminPasswordChangeForm(PasswordChangeForm): + required_css_class = 'required' diff --git a/django/contrib/admin/sites.py b/django/contrib/admin/sites.py index efac3c7521..2e1468b87a 100644 --- a/django/contrib/admin/sites.py +++ b/django/contrib/admin/sites.py @@ -273,10 +273,12 @@ class AdminSite(object): """ Handles the "change password" task -- both form display and validation. """ + from django.contrib.admin.forms import AdminPasswordChangeForm from django.contrib.auth.views import password_change url = reverse('admin:password_change_done', current_app=self.name) defaults = { 'current_app': self.name, + 'password_change_form': AdminPasswordChangeForm, 'post_change_redirect': url, 'extra_context': self.each_context(), } diff --git a/django/contrib/admin/templates/admin/auth/user/change_password.html b/django/contrib/admin/templates/admin/auth/user/change_password.html index cd11a2ee48..8bbc4484c0 100644 --- a/django/contrib/admin/templates/admin/auth/user/change_password.html +++ b/django/contrib/admin/templates/admin/auth/user/change_password.html @@ -34,14 +34,12 @@ <div class="form-row"> {{ form.password1.errors }} - {# TODO: get required class on label_tag #} - <label for="id_password1" class="required">{% trans 'Password' %}:</label> {{ form.password1 }} + {{ form.password1.label_tag }} {{ form.password1 }} </div> <div class="form-row"> {{ form.password2.errors }} - {# TODO: get required class on label_tag #} - <label for="id_password2" class="required">{% trans 'Password (again)' %}:</label> {{ form.password2 }} + {{ form.password2.label_tag }} {{ form.password2 }} <p class="help">{% trans 'Enter the same password as above, for verification.' %}</p> </div> diff --git a/django/contrib/admin/templates/admin/login.html b/django/contrib/admin/templates/admin/login.html index bf1b3f9382..ce7ac30927 100644 --- a/django/contrib/admin/templates/admin/login.html +++ b/django/contrib/admin/templates/admin/login.html @@ -30,11 +30,11 @@ <form action="{{ app_path }}" method="post" id="login-form">{% csrf_token %} <div class="form-row"> {{ form.username.errors }} - <label for="id_username" class="required">{{ form.username.label }}:</label> {{ form.username }} + {{ form.username.label_tag }} {{ form.username }} </div> <div class="form-row"> {{ form.password.errors }} - <label for="id_password" class="required">{% trans 'Password:' %}</label> {{ form.password }} + {{ form.password.label_tag }} {{ form.password }} <input type="hidden" name="next" value="{{ next }}" /> </div> {% url 'admin_password_reset' as password_reset_url %} diff --git a/django/contrib/admin/templates/registration/password_change_form.html b/django/contrib/admin/templates/registration/password_change_form.html index 7b3ae6f6bf..6c1118de00 100644 --- a/django/contrib/admin/templates/registration/password_change_form.html +++ b/django/contrib/admin/templates/registration/password_change_form.html @@ -29,17 +29,17 @@ <div class="form-row"> {{ form.old_password.errors }} - <label for="id_old_password" class="required">{% trans 'Old password' %}:</label>{{ form.old_password }} + {{ form.old_password.label_tag }} {{ form.old_password }} </div> <div class="form-row"> {{ form.new_password1.errors }} - <label for="id_new_password1" class="required">{% trans 'New password' %}:</label>{{ form.new_password1 }} + {{ form.new_password1.label_tag }} {{ form.new_password1 }} </div> <div class="form-row"> {{ form.new_password2.errors }} - <label for="id_new_password2" class="required">{% trans 'Password (again)' %}:</label>{{ form.new_password2 }} + {{ form.new_password2.label_tag }} {{ form.new_password2 }} </div> </fieldset> diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 6e07d45568..f1a0e095f4 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -348,6 +348,7 @@ class AdminPasswordChangeForm(forms.Form): error_messages = { 'password_mismatch': _("The two password fields didn't match."), } + required_css_class = 'required' password1 = forms.CharField(label=_("Password"), widget=forms.PasswordInput) password2 = forms.CharField(label=_("Password (again)"), |
