{% block header %} {% endblock %} {% with errors = get_flashed_messages(category_filter=["error"]) %} {% if errors %} {%- for msg in errors %}

{{ msg }}

{% endfor -%} {% endif %} {% endwith %} {% with success = get_flashed_messages(category_filter=["success"]) %} {% if success %} {%- for msg in success %}

{{ msg }}

{% endfor -%} {% endif %} {% endwith %}
{% block body %}{% endblock %}