mutualisation des templates d'accomplissement et objectifs en sections

This commit is contained in:
2026-03-09 14:45:47 +01:00
parent e64b1e05c5
commit 557c7da71d
5 changed files with 6 additions and 16 deletions

14
templates/sections.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<div class="main-content">
<h1>
{{section.title}}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endblock content %}