Kaydet (Commit) ed4c2e1c authored tarafından Tim Graham's avatar Tim Graham

Fixed #22329 -- Used label_tag() in some admin auth templates.

refs #17922.
üst 2cc88403
...@@ -2,7 +2,7 @@ from __future__ import unicode_literals ...@@ -2,7 +2,7 @@ from __future__ import unicode_literals
from django import forms 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 _ from django.utils.translation import ugettext_lazy as _
...@@ -15,6 +15,7 @@ class AdminAuthenticationForm(AuthenticationForm): ...@@ -15,6 +15,7 @@ class AdminAuthenticationForm(AuthenticationForm):
"for a staff account. Note that both fields may be " "for a staff account. Note that both fields may be "
"case-sensitive."), "case-sensitive."),
} }
required_css_class = 'required'
def confirm_login_allowed(self, user): def confirm_login_allowed(self, user):
if not user.is_active or not user.is_staff: if not user.is_active or not user.is_staff:
...@@ -23,3 +24,7 @@ class AdminAuthenticationForm(AuthenticationForm): ...@@ -23,3 +24,7 @@ class AdminAuthenticationForm(AuthenticationForm):
code='invalid_login', code='invalid_login',
params={'username': self.username_field.verbose_name} params={'username': self.username_field.verbose_name}
) )
class AdminPasswordChangeForm(PasswordChangeForm):
required_css_class = 'required'
...@@ -273,10 +273,12 @@ class AdminSite(object): ...@@ -273,10 +273,12 @@ class AdminSite(object):
""" """
Handles the "change password" task -- both form display and validation. 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 from django.contrib.auth.views import password_change
url = reverse('admin:password_change_done', current_app=self.name) url = reverse('admin:password_change_done', current_app=self.name)
defaults = { defaults = {
'current_app': self.name, 'current_app': self.name,
'password_change_form': AdminPasswordChangeForm,
'post_change_redirect': url, 'post_change_redirect': url,
'extra_context': self.each_context(), 'extra_context': self.each_context(),
} }
......
...@@ -34,14 +34,12 @@ ...@@ -34,14 +34,12 @@
<div class="form-row"> <div class="form-row">
{{ form.password1.errors }} {{ form.password1.errors }}
{# TODO: get required class on label_tag #} {{ form.password1.label_tag }} {{ form.password1 }}
<label for="id_password1" class="required">{% trans 'Password' %}:</label> {{ form.password1 }}
</div> </div>
<div class="form-row"> <div class="form-row">
{{ form.password2.errors }} {{ form.password2.errors }}
{# TODO: get required class on label_tag #} {{ form.password2.label_tag }} {{ form.password2 }}
<label for="id_password2" class="required">{% trans 'Password (again)' %}:</label> {{ form.password2 }}
<p class="help">{% trans 'Enter the same password as above, for verification.' %}</p> <p class="help">{% trans 'Enter the same password as above, for verification.' %}</p>
</div> </div>
......
...@@ -30,11 +30,11 @@ ...@@ -30,11 +30,11 @@
<form action="{{ app_path }}" method="post" id="login-form">{% csrf_token %} <form action="{{ app_path }}" method="post" id="login-form">{% csrf_token %}
<div class="form-row"> <div class="form-row">
{{ form.username.errors }} {{ form.username.errors }}
<label for="id_username" class="required">{{ form.username.label }}:</label> {{ form.username }} {{ form.username.label_tag }} {{ form.username }}
</div> </div>
<div class="form-row"> <div class="form-row">
{{ form.password.errors }} {{ 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 }}" /> <input type="hidden" name="next" value="{{ next }}" />
</div> </div>
{% url 'admin_password_reset' as password_reset_url %} {% url 'admin_password_reset' as password_reset_url %}
......
...@@ -29,17 +29,17 @@ ...@@ -29,17 +29,17 @@
<div class="form-row"> <div class="form-row">
{{ form.old_password.errors }} {{ 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>
<div class="form-row"> <div class="form-row">
{{ form.new_password1.errors }} {{ 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>
<div class="form-row"> <div class="form-row">
{{ form.new_password2.errors }} {{ 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> </div>
</fieldset> </fieldset>
......
...@@ -348,6 +348,7 @@ class AdminPasswordChangeForm(forms.Form): ...@@ -348,6 +348,7 @@ class AdminPasswordChangeForm(forms.Form):
error_messages = { error_messages = {
'password_mismatch': _("The two password fields didn't match."), 'password_mismatch': _("The two password fields didn't match."),
} }
required_css_class = 'required'
password1 = forms.CharField(label=_("Password"), password1 = forms.CharField(label=_("Password"),
widget=forms.PasswordInput) widget=forms.PasswordInput)
password2 = forms.CharField(label=_("Password (again)"), password2 = forms.CharField(label=_("Password (again)"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment