Files
ENI-sortir/templates/admin/sidebar.html.twig
2024-11-25 13:39:48 +01:00

25 lines
1.0 KiB
Twig

<nav class="bg-gray-800 text-white p-5 w-64 h-screen fixed sm:w-48 md:w-64 lg:w-64 xl:w-64">
<h3 class="text-xl font-bold text-center mb-5">Administration</h3>
<ul class="space-y-4">
<li>
<a href="{{ path('app_admin') }}" class="block text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded">
🏠 Tableau de board
</a>
</li>
<li>
<a href="{{ path('app_adminUser') }}" class="block text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded">
👤 Utilisateurs
</a>
</li>
<li>
<a href="{{ path('app_adminSortie') }}" class="block text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded">
🚪 Sortie
</a>
</li>
<li>
<a href="{{ path('app_adminSite') }}" class="block text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded">
📍 Sites
</a>
</li>
</ul>
</nav>