{%- extends "base.html" %} {% import "bootstrap/utils.html" as utils %} {% import "bootstrap/wtf.html" as wtf %} {% block content %}
{%- with messages = get_flashed_messages(with_categories=True) %} {%- if messages %}
{{utils.flashed_messages(messages, container=False, dismissible=True)}}
{%- endif %} {%- endwith %}
{{ form.hidden_tag() }} {{ wtf.form_field(form.single_company) }} {{ wtf.form_field(form.multiple_company) }} {{ wtf.form_field(form.single_company_allow_blank) }}
{%- endblock %}