57 lines
2.3 KiB
HTML
57 lines
2.3 KiB
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_static %}
|
|
{% load admin_urls %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% url 'admin:jsi18n' %}"></script>
|
|
{% endblock %}
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/forms.css" %}" />{% endblock %}
|
|
{% block bodyclass %}{{ block.super }} {{ opts.app_label }}-{{ opts.model_name }} change-form{% endblock %}
|
|
{% if not is_popup %}
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
› <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ opts.app_config.verbose_name }}</a>
|
|
› <a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst }}</a>
|
|
› <a href="{% url opts|admin_urlname:'change' original.pk|admin_urlquote %}">{{ original|truncatewords:"18" }}</a>
|
|
› {% trans 'Change password' %}
|
|
</div>
|
|
{% endblock %}
|
|
{% endif %}
|
|
{% block content %}<div id="content-main">
|
|
<form action="{{ form_url }}" method="post" id="{{ opts.model_name }}_form">{% csrf_token %}{% block form_top %}{% endblock %}
|
|
<div>
|
|
{% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %}
|
|
{% if form.errors %}
|
|
<p class="errornote">
|
|
{% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<p>{% blocktrans with username=original %}Enter a new password for the user <strong>{{ username }}</strong>.{% endblocktrans %}</p>
|
|
|
|
<fieldset class="module aligned">
|
|
|
|
<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 }}
|
|
</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 }}
|
|
<p class="help">{% trans 'Enter the same password as above, for verification.' %}</p>
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<div class="submit-row">
|
|
<input type="submit" value="{% trans 'Change password' %}" class="default" />
|
|
</div>
|
|
|
|
<script type="text/javascript">document.getElementById("id_password1").focus();</script>
|
|
</div>
|
|
</form></div>
|
|
{% endblock %}
|