26 lines
748 B
Twig
26 lines
748 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Profil{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container mx-auto px-4 py-6">
|
|
<h1 class="text-2xl font-bold mb-4">Profil</h1>
|
|
|
|
<!-- Vue spécifique pour le stagiaire -->
|
|
{% if 'ROLE_INTERN' in app.user.roles %}
|
|
{% include 'profile/intern.html.twig' %}
|
|
{% endif %}
|
|
|
|
<!-- Vue spécifique pour l'employé -->
|
|
{% if 'ROLE_EMPLOYEE' in app.user.roles %}
|
|
{% include 'profile/employee.html.twig' %}
|
|
{% endif %}
|
|
|
|
{% if 'ROLE_ADMIN' in app.user.roles%}
|
|
<div>
|
|
<h1 class="text-9xl font-bold ml-kdn "> Vous etes admin</h1>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|