profile done

This commit is contained in:
Olivier PARPAILLON
2024-11-25 11:00:36 +01:00
parent cb01a159bc
commit 4561cea8d4
5 changed files with 16 additions and 10 deletions

View File

@@ -28,13 +28,19 @@
<i class="fas fa-map-marker-alt mr-2 text-slate-400 opacity-75"></i>{{ profile.telephone }} - {{ profile.email }}
</div>
</div>
{% if isActiveUser %}
<div class="mt-6 py-6 border-t border-slate-200 text-center">
<div class="flex flex-wrap justify-center">
<div class="w-full px-4">
<a href="{{ path('profile_edit', {'uuid': app.user.idParticipant}) }}" class="text-slate-700 hover:text-slate-400">Modifier</a>
<a href="{{ path('profile_edit', {'uuid': app.user.idParticipant}) }}" class="text-slate-700 hover:text-slate-400">
<button class="bg-green-500 px-4 py-2 rounded hover:bg-green-700">
Modifier
</button>
</a>
</div>
</div>
</div>
{% endif %}
</div>
</div>
{% endblock %}