]> git.immae.eu Git - perso/Denise/oms.git/blob - templates/faq.html
301f5d757d69f0dd11714f2982c67177cb0e1e22
[perso/Denise/oms.git] / templates / faq.html
1 {% extends "base.html" %}
2 {% block contenu %}
3 <h2>Foire Aux Questions</h2>
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 %}