summaryrefslogtreecommitdiff
path: root/templates/faq.html
blob: 162f68dbb76b365f2f530ceff16fbeeb0efd698d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "base.html" %}
{% block contenu %}
<h2>Foire Aux Questions (FAQ)</h2>

<div id="sommaire">
<ul>{% for cat in lcateg %}
<li><a href="#{{ cat }}">{{ cat }}</a></li>
{% endfor %}
</ul>
</div>

<div id="questionsreponses">
{% for i in range(lcateg|length) %}
{% set qr = tableqr[i] %}

<h3 id="{{ lcateg[i] }}">{{ lcateg[i] }}</h3>
<ul>
	{% for (q,r) in qr %}
	<li><p><strong>Q : </strong>{{ q|safe }}</p>
	<p><strong>R : </strong>{{ r|safe }}</p>
	</li>
	{% endfor %}
</ul>


{% endfor %}
</div>


{% endblock %}