ScoDoc-PE/app/templates/confirm_dialog.j2

22 lines
485 B
Plaintext
Raw Normal View History

{% extends 'base.j2' %}
2023-11-15 20:38:51 +01:00
{% import 'wtf.j2' as wtf %}
2022-06-25 14:18:34 +02:00
{% block app_content %}
<h2>{{ title }}</h2>
<div style="margin-top: 16px;">
{{ 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>
2023-11-15 20:38:51 +01:00
{% endblock %}