PCv5/templates/forum/index.html

21 lines
391 B
HTML

{% extends "base.html" %}
{% block title %}Planète Casio — Index des forums{% endblock %}
{% block content %}
<article>
<h1>Index des forums</h1>
<div>
<ul>
{% for f in forums %}
<li>
<h3>{{ f.name }}</h3>
{{ f.description }}
</li>
{% empty %}
<li><h3>Pas de forum disponible actuellement</h3></li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}