mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
19 lines
378 B
Twig
19 lines
378 B
Twig
|
|
{% extends "frames/default.html.twig" %}
|
|
{% block content %}
|
|
{% if app.request.hasPreviousSession %}
|
|
{% for type, messages in app.session.flashbag.all() %}
|
|
{% for message in messages %}
|
|
<div class="flash-{{ type }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div>
|
|
{% block fos_user_content %}
|
|
{% endblock fos_user_content %}
|
|
</div>
|
|
{% endblock content %}
|