My tester app for charts
A place to demonstrate how to use the blueprint.
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for category, message in get_flashed_messages(with_categories=True) %}
{{ 'Error: ' if category == 'error' else '' }}{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% block body %}{% endblock %}