ScoDoc/app/templates/form_confirmation.j2

16 lines
290 B
Plaintext
Raw Permalink Normal View History

2021-12-28 16:17:07 +01:00
{# -*- mode: jinja-html -*- #}
{% extends 'base.j2' %}
2023-11-15 20:38:51 +01:00
{% import 'wtf.j2' as wtf %}
{% block app_content %}
<h1>{{ title }}</h1>
<br>
<div>{{ info_message | safe }}</div>
<br>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
2023-11-15 20:38:51 +01:00
{% endblock %}