1aed36330f
- Proper use of include - Defining namespaces (I do not use them for now because many urls are going to change) - Do not try to reverse with old-style references: 'cof.views.XXX'
13 lines
475 B
HTML
13 lines
475 B
HTML
{% extends "base_title.html" %}
|
|
{% load bootstrap %}
|
|
|
|
{% block page_size %}col-sm-8{% endblock %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Changement de mot de passe</h2>
|
|
<form class="form-horizontal" method="post" action="{% url 'password_change' %}">
|
|
{% csrf_token %}
|
|
{{ form | bootstrap }}
|
|
<input type="submit" class="btn btn-primary pull-right" value="Changer" />
|
|
</form>
|
|
{% endblock %}
|