{% for type, messageList in app.flashes %}
{% for message in messageList %}
<div class="alert alert-{{ type }} alert-dismissible fade show" role="alert">
{{ message | raw }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
{% endfor %}