{% set flashTypes = { 'success': {'class': 'alert-success', 'strong': 'Bravo !'}, 'warning': {'class': 'alert-warning', 'strong': 'Attention !'}, 'error': {'class': 'alert-danger', 'strong': 'Erreur !'} } %} {% for type, config in flashTypes %} {% for message in app.flashes(type) %} {% endfor %} {% endfor %}