summaryrefslogtreecommitdiff
path: root/templates/faq.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/faq.html')
-rw-r--r--templates/faq.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/faq.html b/templates/faq.html
new file mode 100644
index 0000000..162f68d
--- /dev/null
+++ b/templates/faq.html
@@ -0,0 +1,30 @@
1{% extends "base.html" %}
2{% block contenu %}
3<h2>Foire Aux Questions (FAQ)</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 %}