summaryrefslogtreecommitdiff
path: root/templates/faq.html
diff options
context:
space:
mode:
authorDenise sur Lya <sekhmet@lya>2020-06-16 00:32:10 +0200
committerDenise sur Lya <sekhmet@lya>2020-06-16 00:32:10 +0200
commit66a3e38cc085dc000776d3e2ad3acd7ef57068a3 (patch)
tree1cfb7b1953596c6bd3e01706a20bb6e7e10d3bca /templates/faq.html
parent9cb3c31c54b868e0c3a335ef3a4b4cdc81e479fb (diff)
downloadoms-66a3e38cc085dc000776d3e2ad3acd7ef57068a3.tar.gz
oms-66a3e38cc085dc000776d3e2ad3acd7ef57068a3.tar.zst
oms-66a3e38cc085dc000776d3e2ad3acd7ef57068a3.zip
Ajout de la FAQ, correction de bugs. Meilleure requĂȘte de courbe.
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..301f5d7
--- /dev/null
+++ b/templates/faq.html
@@ -0,0 +1,30 @@
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 %}