ernestophone.ens.fr/templates/calendrier/changename.html
Martin Pépin 334c1d2f00 Commit bourrin
Ajoute des changements effectués en prod sans passer par le git
2016-06-21 00:33:32 +02:00

18 lines
419 B
HTML

{% extends "base.html" %}
{% block titre %}Modification du profil{% endblock %}
{% block content %}
<h2>Modification du profil</h2>
{% if error %}
<p>{{ error }}</p>
{% endif %}
{% if success %}
<p>Changement enregistré !</p>
{% endif %}
<form action="{% url 'calendrier.views.changename' %}" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Valider" />
</form>
{% endblock %}