{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}{{ page_title }}{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }} {% if paragraphs is defined and paragraphs|length > 0 %}
{% for paragraph in paragraphs %}

{{ paragraph }}

{% endfor %}
{% endif %}

Input

{{ wtf.quick_form(form, form_type='horizontal', button_map={'submit_button': 'btn btn-primary'}) }}
{% include "footer.html" %} {% endblock %}