summaryrefslogtreecommitdiff
path: root/templates/faq.html
diff options
context:
space:
mode:
authorDenise sur Lya <sekhmet@lya>2021-07-27 14:37:33 +0200
committerDenise sur Lya <sekhmet@lya>2021-07-27 14:37:33 +0200
commitea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937 (patch)
tree74f82bb71cd18b387892717c5055cc2c56d2c135 /templates/faq.html
downloadbingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.tar.gz
bingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.tar.zst
bingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.zip
création du projet...HEADmaster
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 %}