Aucune description

index.html 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {% extends "base.html" %}
  2. {% block title %}Dashboard{% endblock %}
  3. {% block content %}
  4. <div class="container mx-auto px-4 py-6">
  5. <h1 class="text-3xl font-bold text-gray-800 mb-4">Welcome to the Dashboard</h1>
  6. <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
  7. <!-- Card 1 -->
  8. <div class="bg-white p-6 rounded-lg shadow-md">
  9. <h2 class="text-xl font-semibold text-gray-700">Total Users</h2>
  10. <p class="text-gray-600 text-lg mt-2">{{ total_users }}</p>
  11. </div>
  12. <!-- Card 2 -->
  13. <div class="bg-white p-6 rounded-lg shadow-md">
  14. <h2 class="text-xl font-semibold text-gray-700">Reports Generated</h2>
  15. <p class="text-gray-600 text-lg mt-2">{{ total_reports }}</p>
  16. </div>
  17. <!-- Card 3 -->
  18. <div class="bg-white p-6 rounded-lg shadow-md">
  19. <h2 class="text-xl font-semibold text-gray-700">Active Sessions</h2>
  20. <p class="text-gray-600 text-lg mt-2">{{ total_sessions }}</p>
  21. </div>
  22. </div>
  23. <div class="mt-8">
  24. <h2 class="text-2xl font-bold text-gray-800 mb-4">Latest Reports</h2>
  25. <div class="bg-white rounded-lg shadow-md overflow-hidden">
  26. <table class="w-full border-collapse border border-gray-200">
  27. <thead class="bg-gray-100">
  28. <tr>
  29. <th class="border border-gray-200 px-4 py-2 text-left">Date</th>
  30. <th class="border border-gray-200 px-4 py-2 text-left">Report Name</th>
  31. <th class="border border-gray-200 px-4 py-2 text-left">File</th>
  32. <th class="border border-gray-200 px-4 py-2 text-left">User</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. {% for report in latest_reports %}
  37. <tr class="hover:bg-gray-50">
  38. <td class="border border-gray-200 px-4 py-2">{{ report.created_at|date:"d/m/Y H:i" }}</td>
  39. <td class="border border-gray-200 px-4 py-2">{{ report.name }}</td>
  40. <td class="border border-gray-200 px-4 py-2">
  41. {% if report.file %}
  42. <a href="{{ report.file.url }}" target="_blank" class="text-blue-600 underline">View</a>
  43. {% else %}
  44. <span class="text-gray-400">No file</span>
  45. {% endif %}
  46. </td>
  47. <td class="border border-gray-200 px-4 py-2">{{ report.created_by.username }}</td>
  48. </tr>
  49. {% empty %}
  50. <tr>
  51. <td colspan="3" class="text-center text-gray-500 py-2">No reports found.</td>
  52. </tr>
  53. {% endfor %}
  54. </tbody>
  55. </table>
  56. </div>
  57. </div>
  58. </div>
  59. {% endblock %}