32 lines
935 B
Twig
32 lines
935 B
Twig
{% for notice in app.flashes('primary') %}
|
|
<div class="alert alert-primary" role="alert">
|
|
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for notice in app.flashes('success') %}
|
|
<div class="alert alert-success" role="alert">
|
|
<font size="4">
|
|
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
|
|
</font>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for notice in app.flashes('danger') %}
|
|
<div class="alert alert-danger" role="alert">
|
|
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for notice in app.flashes('warning') %}
|
|
<div class="alert alert-warning" role="alert">
|
|
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for notice in app.flashes('info') %}
|
|
<div class="alert alert-info" role="alert">
|
|
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
|
|
</div>
|
|
{% endfor %}
|