2025-12-19 09:43:33 +00:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
|
|
{% load tags_personnaliser %}
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/tabulator_bootstrap5.min.css' %}">
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
|
|
|
|
|
<title>{% block page_titre %} Tableau de bord {% endblock %}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container-fluid">
|
2026-08-03 14:31:48 +00:00
|
|
|
<div class="row flex-nowrap">
|
|
|
|
|
{% include "parts/menu_application.html" %}
|
|
|
|
|
{% include "parts/navigation-ordinateur.html" %}
|
|
|
|
|
{% comment %} {% include "parts/navigation-mobile.html" %} {% endcomment %}
|
|
|
|
|
<div class="col">
|
2025-12-19 09:43:33 +00:00
|
|
|
{% block "contenu" %} {% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<script src="{% static 'js\tabulator.min.js' %}"></script>
|
|
|
|
|
<script src="{% static 'js\bootstrap.min.js' %}"></script>
|
|
|
|
|
{% block "js" %} {% endblock %}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|