2013-10-26 22:40:47 +02:00
|
|
|
{% extends "form_base.html" %}
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
|
|
{% block form_title %}{% trans "Admin Password"%}{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block form_description %}
|
2013-12-01 00:47:24 +01:00
|
|
|
<p>{% trans "You can change other users passwords here." %}</p>
|
2013-10-26 22:40:47 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block form_fields %}
|
2015-09-29 21:34:54 +02:00
|
|
|
<form action="{% url 'admin' %}" method="post" class="form-horizontal well">
|
2013-10-26 22:40:47 +02:00
|
|
|
{% csrf_token %}
|
|
|
|
|
{{ form|crispy }}
|
|
|
|
|
|
|
|
|
|
<div class="control-group">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<button type="submit" class="btn btn-primary">{% trans "Save"%}</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
2013-12-01 00:47:24 +01:00
|
|
|
{% endblock form_fields %}
|