{% extends 'base.html.twig' %} {% block body %} {% set isSA = is_granted('ROLE_SUPER_ADMIN')%}
{% for type, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}
{% if organization.logoUrl %} Organization logo {% endif %}

{{ organization.name|title }} - Dashboard

{% if isSA %} 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

{# Button to trigger modal #}
{# New User Modal #}

Administrateurs

{# Modal for Adding Admin #}

Mes utilisateurs

{# APPLICATION ROW #} {# TODO:remove app acces and replace wioth project overview#}

Mes Projets

{% if is_granted("ROLE_SUPER_ADMIN") %} {# Trigger for the Modal #} {% endif %}
{# Activities col #}

Activité récente

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