{% extends 'base.html.twig' %} {% block body %}
{% for type, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}
{% if organization.logoUrl %} Organization logo {% endif %}

{{ organization.name|title }} - Dashboard

{% if is_granted("ROLE_SUPER_ADMIN") %} Gérer l'organisation
{% if organization.active %}
{% else %}
{% endif %} {% elseif is_granted("ROLE_ADMIN") %} Gérer mon organisation {% endif %}
{# single row so that activity and users tabs are next to each other #}
{# User tables #}

Nouveaux utilisateurs

Ajouter un utilisateur

Administrateurs

Mes utilisateurs

{# APPLICATION ROW #} {# TODO: Weird gap not going away #}
{% for application in applications %}
{% include 'application/appSmall.html.twig' with { application: application } %}
{% endfor %}
{# Activities col #}

Activité récente

{# Empty state #}
Aucune activité récente.
{% endblock %}