Skip to content

Instantly share code, notes, and snippets.

@amenophis
Created January 5, 2014 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amenophis/8274228 to your computer and use it in GitHub Desktop.
Save amenophis/8274228 to your computer and use it in GitHub Desktop.
Symfony flashes twig
{% 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