334c1d2f00
Ajoute des changements effectués en prod sans passer par le git
18 lines
419 B
HTML
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 %}
|