This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/authentic2/cut-edit.html

26 lines
589 B
HTML

{% extends "authentic2/cut-base.html" %}
{% load i18n %}
{% block cut-content %}
<div id="cut-account">
<h2 class="cut-edit-title">{% block cut-edit-title %}{% endblock %}</h2>
<form method="post" action=".">
{{ form.next_url }}
{% csrf_token %}
<div class="cut-edit">
{% if form.is_bound and not form.is_valid %}
<ul class="errorlist nonfield">
<li>Le formulaire comporte des erreurs qui sont indiquées ci-dessous.</li>
</ul>
{% endif %}
{% block form %}
{% endblock %}
</div>
<p class="center">
<button>Enregistrer mes données</button>
</p>
</form>
</div>
{% endblock %}