2023-01-30 22:25:17 +01:00
|
|
|
{% extends 'base.j2' %}
|
2022-06-25 14:18:34 +02:00
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
<h2>{{ title }}</h2>
|
|
|
|
|
|
|
|
<div style="margin-top: 16px;">
|
2023-01-30 19:30:25 +01:00
|
|
|
{{ explanation|safe }}
|
2022-06-25 14:18:34 +02:00
|
|
|
</div>
|
|
|
|
<div style="margin-top: 16px;">
|
|
|
|
<form method="post">
|
|
|
|
<input type="submit" value="OK" />
|
|
|
|
{% if cancel_url %}
|
|
|
|
<input type="button" value="Annuler" style="margin-left: 16px;"
|
|
|
|
onClick="document.location='{{ cancel_url }}';" />
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|