participant view

This commit is contained in:
jleroy2023
2024-11-25 16:23:56 +01:00
parent 72719df7c2
commit ab9f9451a1
5 changed files with 59 additions and 3 deletions

View File

@@ -32,6 +32,7 @@
{% endif %}
<ul id="navbar" class="hidden absolute top-20 right-0 w-max bg-white shadow-md p-4 pl-2 flex-col space-y-4">
<li><a href="{{ path('home') }}" class="text-gray-700 font-bold hover:text-blue-500">Accueil</a></li>
<li><a href="{{ path('participants') }}" class="text-gray-700 font-bold hover:text-blue-500">Participants</a></li>
{% if app.user %}
<li><a href="{{ path('profile_view', {'uuid': app.user.idParticipant}) }}" class="text-gray-700 font-bold hover:text-blue-500">Mon profile</a></li>
{% endif %}