Skip to content

Instantly share code, notes, and snippets.

@bdecarne
Created August 23, 2013 17:03
Show Gist options
  • Save bdecarne/6321635 to your computer and use it in GitHub Desktop.
Save bdecarne/6321635 to your computer and use it in GitHub Desktop.
Twig : render all flash messages
{% for label, flashes in app.session.flashbag.all %}
{% for flash in flashes %}
<div class="alert alert-{{ label }}">
{{ flash }}
</div>
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment