{# -*- mode: jinja-html -*- #}
{% extends 'base.html' %}
{% import 'bootstrap/wtf.html' as wtf %}

{% block app_content %}
    {% include 'entreprises/nav.html' %}

    <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>
{% endblock %}