Correction

This commit is contained in:
Charles 2025-08-28 09:21:38 +02:00
parent f52ad375b4
commit 84e5d7c87a
1 changed files with 8 additions and 0 deletions

View File

@ -10,8 +10,16 @@
</div>
{% endif %}
{% include 'user/userInformation.html.twig' %}
{% if orgs|length >1 %}
<h1 class="mt-5 mb-4">Vos applications</h1>
{% elseif orgs|length == 1 %}
{% for org in orgs %}
<h1 class="mt-5 mb-4">{{ org.name }}</h1>
{% endfor %}
{% else %}
<h1 class="mt-5 mb-4">Aucune application</h1>
{% endif %}
<div class="d-flex ">
{% for uoa in uoas %}
{% include 'user/application/information.html.twig' %}