{% extends 'base.html.twig' %} {% block title %} Suite Easy {% endblock %} {% block body %}
{% for type, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}

Bienvenue sur la suite Easy

Ici, vous pouvez trouver toutes nos applications à un seul endroit !

{% if applications is empty %} {% endif %} {% for application in applications %}
{% include 'application/InformationCard.html.twig' with { application: application } %}
{% endfor %}
{% endblock %}