ScoDoc-PE/app/templates/entreprises/preferences.j2

18 lines
389 B
Plaintext
Raw Normal View History

{# -*- mode: jinja-html -*- #}
{% extends 'base.j2' %}
2023-11-15 20:38:51 +01:00
{% import 'wtf.j2' as wtf %}
{% block app_content %}
2023-02-20 14:59:13 +01:00
{% include 'entreprises/nav.j2' %}
<div class="container">
<h1>Préférences module gestion entreprises</h1>
<br>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form, novalidate=True) }}
</div>
</div>
</div>
2023-11-15 20:38:51 +01:00
{% endblock %}