templates/uniqskills/base/flash_alerts/alert.html.twig line 1

Open in your IDE?
  1. {% for msg in app.session.flashBag.get(alertType) %}
  2.     <div class="alert alert-{{ alertType }} alert-dismissable">
  3.         <button type="button" class="close" data-dismiss="alert" aria-hidden="true"></button>
  4.         {% if alertType == 'warning' %}
  5.             <i class="icon-clock"></i>
  6.         {% else %}
  7.             <strong class="fm-capitalize">{{ textType }}!</strong>
  8.         {% endif %}
  9.         {{ msg|trans|raw }}
  10.     </div>
  11. {% endfor %}