mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
20 lines
748 B
Twig
20 lines
748 B
Twig
{% macro flashes() %}
|
|
{% for type in app.getAvailableFlashTypes %}
|
|
{% for message in app.getFlash(type) %}
|
|
<div class="alert alert-{{ type }}">
|
|
<table>
|
|
<tr>
|
|
<td class="alert-block-logo">
|
|
<i class="fa-2x icon-white fa fa-exclamation-circle" aria-hidden="true"></i>
|
|
</td>
|
|
<td class="alert-block-content">{{ message }}</td>
|
|
<td class="alert-block-close">
|
|
<a href="#"><b>×</b></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endmacro %}
|