traduction + alert

This commit is contained in:
maher
2025-12-29 16:41:58 +01:00
parent fc2c7a3d25
commit fef43c222d
19 changed files with 206 additions and 718 deletions

View File

@@ -0,0 +1,10 @@
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert alert-{{ label }}" role="alert" style="margin-bottom: 30px;">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
{{ message| raw }}
</div>
{% endfor %}
{% endfor %}