kpsul/templates/gestioncof/profile.html

16 lines
582 B
HTML
Raw Normal View History

2012-07-11 17:39:20 +02:00
{% extends "base_title.html" %}
{% block realcontent %}
<h2>Modifier mon profil</h2>
{% if success %}
<p class="success">Votre profil a été mis à jour avec succès !</p>
{% endif %}
2013-09-05 22:22:47 +02:00
<form id="profile" method="post" action="{% url 'gestioncof.views.profile' %}">
2012-07-11 17:39:20 +02:00
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" class="btn-submit" value="Enregistrer" />
</form>
{% endblock %}