ernestophone.ens.fr/templates/calendrier/changename.html

19 lines
419 B
HTML
Raw Normal View History

{% 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 %}