feat: web app compagnon sur sliding_api - chat Narrator, plan, galerie, revision (C9)

This commit is contained in:
2026-07-12 20:41:18 +02:00
parent 549c322f2e
commit 42b0bf0713
9 changed files with 599 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{% extends "base.html" %}{% block title %}Projets{% endblock %}
{% block content %}
<h1>Projets</h1>
<form class="newproj" method="POST" action="/projects">
<input name="nom" placeholder="Nouveau projet…" required>
<button type="submit">Créer</button>
</form>
<div class="grid">
{% for pr in projects %}
<a class="card proj" href="/p/{{ pr.slug }}">
<h2>{{ pr.nom }}</h2>
<p class="hint">{{ pr.sessions }} session(s)
{% if pr.a_un_plan %}· plan ✓{% endif %}
{% if pr.dernier_pptx %}· deck ✓{% endif %}</p>
<p class="hint">{{ pr.maj or "jamais ouvert" }}</p>
</a>
{% endfor %}
</div>
{% endblock %}