diff --git a/templates/user/index.html.twig b/templates/user/index.html.twig
index ec6f756..e72325e 100644
--- a/templates/user/index.html.twig
+++ b/templates/user/index.html.twig
@@ -11,42 +11,7 @@
{% for org in usersByOrganization %}
{{ org.organization_name|title }}
-
-
-
- | Picture |
- Surname |
- Name |
- Email |
- Visualiser |
-
-
-
- {% for user in org.users %}
-
-
- {% if user.pictureUrl %}
-
- {% endif %}
- |
- {{ user.surname }} |
- {{ user.name }} |
- {{ user.email }} |
-
-
-
- |
-
- {% endfor %}
- {% if org.users|length == 0 %}
-
- | Aucun utilisateur trouvé. |
-
- {% endif %}
-
-
+ {% include 'user/userList.html.twig' %}
{% endfor %}
{% endblock %}
\ No newline at end of file
diff --git a/templates/user/userList.html.twig b/templates/user/userList.html.twig
new file mode 100644
index 0000000..e936f42
--- /dev/null
+++ b/templates/user/userList.html.twig
@@ -0,0 +1,39 @@
+{% block body %}
+
+
+
+
+ | Picture |
+ Surname |
+ Name |
+ Email |
+ Visualiser |
+
+
+
+ {% for user in org.users %}
+
+
+ {% if user.pictureUrl %}
+
+ {% endif %}
+ |
+ {{ user.surname }} |
+ {{ user.name }} |
+ {{ user.email }} |
+
+
+
+ |
+
+ {% endfor %}
+ {% if org.users|length == 0 %}
+
+ | Aucun utilisateur trouvé. |
+
+ {% endif %}
+
+
+{% endblock %}
\ No newline at end of file