IT-Stock/app/templates/base.html
maxsoch 8bb5c9406a Initial scaffold: gestion de stock IT pour le département IT
App FastAPI + SQLite + SQLModel + Jinja2 pour gérer le stock de matériel
IT (catégories/sous-catégories/matériels), avec recherche par scan de
code-barres et alertes email de stock bas.
2026-07-14 18:38:59 +02:00

21 lines
515 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block titre %}Gestion de stock IT{% endblock %}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<nav>
<a href="/materiels">Matériels</a>
<a href="/categories">Catégories</a>
<a href="/scan">Scanner</a>
<a href="/destinataires">Alertes</a>
</nav>
<main>
{% block contenu %}{% endblock %}
</main>
</body>
</html>