{% extends 'base.html.twig' %} {% block body %}
{% 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#}
{% include 'organization/activity.html.twig' with { title: 'Activités récentes', empty_message: 'Aucune activité récente.' } %}
{# Ne pas enlever le 2ème /div#}
{% endblock %}