ernestophone.ens.fr/calendrier/templates/calendrier/changename.html
Martin Pépin a206288bbe Meilleures url
On n'utilise plus des chemins du type `"calendrier.views.home"` sous forme
de chaîne de caratères (déprécié).
2016-08-29 05:38:10 +02:00

18 lines
418 B
HTML

{% extends "gestion/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 'change-doodle-name' %}" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Valider" />
</form>
{% endblock %}