Skip to content

Instantly share code, notes, and snippets.

View rmbl's full-sized avatar

Philipp Gildein rmbl

  • Stuttgart / Germany
View GitHub Profile
@hasantayyar
hasantayyar / flashbag.html.twig
Created September 8, 2014 14:46
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 %}