mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-2581_twig-macro-explode_4.1
explode commmon/macros.html.twig in 3 files for 3 macros
This commit is contained in:
19
templates/web/common/macro_flashes.html.twig
Normal file
19
templates/web/common/macro_flashes.html.twig
Normal file
@@ -0,0 +1,19 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user