125 lines
7.6 KiB
HTML
125 lines
7.6 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Tableau de bord - AS Talange</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.11"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900 flex h-screen overflow-hidden">
|
|
|
|
<!-- Sidebar -->
|
|
<div th:replace="~{fragments/sidebar :: sidebar}"></div>
|
|
|
|
<!-- Main Content -->
|
|
<main class="flex-1 flex flex-col h-screen overflow-hidden">
|
|
<!-- Header -->
|
|
<header class="h-16 bg-white border-b border-gray-200 flex items-center justify-between px-6">
|
|
<h2 class="text-lg font-semibold text-gray-800">Tableau de bord</h2>
|
|
|
|
</header>
|
|
|
|
<!-- Main section -->
|
|
<div class="flex-1 overflow-auto p-6 bg-gray-50/50">
|
|
|
|
<!-- Message de bienvenue -->
|
|
<div class="flex items-center bg-white rounded-xl shadow-sm border border-gray-100 p-6 mb-8">
|
|
<img src="/images/logo.png" alt="Logo AS Talange" class="h-20 w-auto mr-6 object-contain drop-shadow-sm">
|
|
<div>
|
|
<h2 class="text-2xl font-bold text-gray-900">Bienvenue sur votre espace AS Talange</h2>
|
|
<p class="text-gray-500 mt-1">Retrouvez ci-dessous le résumé de l'activité du club.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- KPIs -->
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
|
|
<!-- Total Adhérents -->
|
|
<div class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 flex items-center space-x-4">
|
|
<div class="p-3 bg-blue-50 text-blue-600 rounded-lg">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"></path></svg>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-medium text-gray-500">Total Adhérents</p>
|
|
<p class="text-2xl font-bold text-gray-900" th:text="${totalAdherents}">0</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Licences Actives -->
|
|
<div class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 flex items-center space-x-4">
|
|
<div class="p-3 bg-green-50 text-green-600 rounded-lg">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-medium text-gray-500">Licences Actives</p>
|
|
<p class="text-2xl font-bold text-gray-900" th:text="${licencesActives}">0</p>
|
|
<p class="text-xs text-gray-400 mt-1" th:text="${licencesBrouillon} + ' en brouillon'"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Total Encaissé -->
|
|
<div sec:authorize="!hasRole('ROLE_AGENT_SAISIE')" class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 flex items-center space-x-4">
|
|
<div class="p-3 bg-purple-50 text-purple-600 rounded-lg">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-medium text-gray-500">Total Encaissé</p>
|
|
<p class="text-2xl font-bold text-gray-900" th:text="${totalEncaisse} + ' €'">0 €</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Reste à Recouvrer -->
|
|
<div sec:authorize="!hasRole('ROLE_AGENT_SAISIE')" class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 flex items-center space-x-4">
|
|
<div class="p-3 bg-red-50 text-red-600 rounded-lg">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 17h8m0 0V9m0 8l-8-8-4 4-6-6"></path></svg>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-medium text-gray-500">Reste à Recouvrer</p>
|
|
<p class="text-2xl font-bold text-gray-900" th:text="${resteARecouvrer} + ' €'">0 €</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Derniers Inscrits -->
|
|
<div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
|
|
<div class="px-6 py-4 border-b border-gray-100 flex justify-between items-center">
|
|
<h3 class="text-lg font-semibold text-gray-900">Derniers adhérents inscrits</h3>
|
|
<a href="/adherents" class="text-sm font-medium text-blue-600 hover:text-blue-800">Voir tout →</a>
|
|
</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="w-full text-left border-collapse min-w-[600px]">
|
|
<thead>
|
|
<tr class="bg-gray-50/50 text-gray-500 text-xs uppercase tracking-wider border-b border-gray-100">
|
|
<th class="py-3 px-6 font-medium">Nom & Prénom</th>
|
|
<th class="py-3 px-6 font-medium">Date de naissance</th>
|
|
<th class="py-3 px-6 font-medium text-right">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-100 text-sm">
|
|
<tr th:if="${#lists.isEmpty(derniersInscrits)}">
|
|
<td colspan="3" class="py-4 px-6 text-center text-gray-500">Aucun adhérent récent.</td>
|
|
</tr>
|
|
<tr th:each="adh : ${derniersInscrits}" class="hover:bg-gray-50 transition-colors">
|
|
<td class="py-4 px-6">
|
|
<div class="font-medium text-gray-900" th:text="${adh.nom + ' ' + adh.prenom}">Dupont Jean</div>
|
|
<div class="text-xs text-gray-500" th:text="${adh.email}">jean@example.com</div>
|
|
</td>
|
|
<td class="py-4 px-6 text-gray-600" th:text="${#temporals.format(adh.dateNaissance, 'dd/MM/yyyy')}">01/01/2000</td>
|
|
<td class="py-4 px-6 text-right">
|
|
<a th:href="@{/adherents/{id}/edit(id=${adh.id})}" class="text-blue-600 hover:text-blue-800 font-medium">Voir profil</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|