{% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block content %}

Process Multiple Records

{%- with messages = get_flashed_messages(with_categories=True) %} {%- if messages %}
{{utils.flashed_messages(messages)}}
{%- endif %} {%- endwith %}

Required Fields:

    {% for f in req_fields %}
  • {{ f }}
  • {% endfor %}
{{wtf.quick_form(form)}}

Results:

{{ output }}
{% endblock %}