]> git.immae.eu Git - perso/Denise/oms.git/blame - templates/faq.html
amélioration de l'affichage préma (masqué par défaut) + faq
[perso/Denise/oms.git] / templates / faq.html
CommitLineData
66a3e38c
DL
1{% extends "base.html" %}
2{% block contenu %}
be2bf515 3<h2>Foire Aux Questions (FAQ)</h2>
66a3e38c
DL
4
5<div id="sommaire">
6<ul>{% for cat in lcateg %}
7<li><a href="#{{ cat }}">{{ cat }}</a></li>
8{% endfor %}
9</ul>
10</div>
11
12<div id="questionsreponses">
13{% for i in range(lcateg|length) %}
14{% set qr = tableqr[i] %}
15
16<h3 id="{{ lcateg[i] }}">{{ lcateg[i] }}</h3>
17<ul>
18 {% for (q,r) in qr %}
19 <li><p><strong>Q : </strong>{{ q|safe }}</p>
20 <p><strong>R : </strong>{{ r|safe }}</p>
21 </li>
22 {% endfor %}
23</ul>
24
25
26{% endfor %}
27</div>
28
29
30{% endblock %}