18 lines
609 B
Twig
18 lines
609 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}User Profile{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="w-100 h-100 p-5 m-auto" data-controller="user">
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h1>Gestion Utilisateurs</h1>
|
|
<a href="{{ path('user_new') }}" class="btn btn-primary">Ajouter un utilisateur</a>
|
|
</div>
|
|
|
|
{% for org in usersByOrganization %}
|
|
{% include 'user/userList.html.twig' with {
|
|
title: org.organization_name|capitalize
|
|
} %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |