templates/shared/dashboard/alerts.html.twig line 1

Open in your IDE?
  1. {% block flashes %}
  2.     {% for type in ['success', 'danger', 'warning'] %}
  3.         {% for flash in app.session.flashbag.get(type) %}
  4.             <div class="alert alert-custom alert-{{ type }} alert-primary fade show" role="alert">
  5.                 <div class="alert-text">{{ flash|raw }}</div>
  6.                 <div class="alert-close">
  7.                     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  8.                         <span aria-hidden="true"><i class="ki ki-close"></i></span>
  9.                     </button>
  10.                 </div>
  11.             </div>
  12.         {% endfor %}
  13.     {% endfor %}
  14. {% endblock %}