Correction
This commit is contained in:
parent
f52ad375b4
commit
84e5d7c87a
|
|
@ -10,8 +10,16 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% include 'user/userInformation.html.twig' %}
|
{% include 'user/userInformation.html.twig' %}
|
||||||
|
{% if orgs|length >1 %}
|
||||||
|
|
||||||
<h1 class="mt-5 mb-4">Vos applications</h1>
|
<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 ">
|
<div class="d-flex ">
|
||||||
{% for uoa in uoas %}
|
{% for uoa in uoas %}
|
||||||
{% include 'user/application/information.html.twig' %}
|
{% include 'user/application/information.html.twig' %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue