Skip to content

Instantly share code, notes, and snippets.

@kkreft
Forked from hasantayyar/flashbag.html.twig
Created November 24, 2015 09:29
Show Gist options
  • Save kkreft/c9bd07e1d4f8c78956f3 to your computer and use it in GitHub Desktop.
Save kkreft/c9bd07e1d4f8c78956f3 to your computer and use it in GitHub Desktop.
symfony flashbag bootstrap alert
{% for type, messages in app.session.flashBag.all %}
{% for message in messages %}
{%if type == 'error'%} {% set type = 'danger' %} {%endif%}
<div class="alert alert-{{ type }}">
{{ message|raw }}
</div>
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment