feat: web app compagnon sur sliding_api - chat Narrator, plan, galerie, revision (C9)
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user