{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{% if category == "warning" %}Warning:{% endif %}
{% if category == "error" %}Error:{% endif %}
{% if category == "info" %}Note:{% endif %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% block body %}{% endblock %}