]> git.immae.eu Git - perso/Denise/oms.git/blobdiff - templates/faq.html
Ajout de la FAQ, correction de bugs. Meilleure requĂȘte de courbe.
[perso/Denise/oms.git] / templates / faq.html
diff --git a/templates/faq.html b/templates/faq.html
new file mode 100644 (file)
index 0000000..301f5d7
--- /dev/null
@@ -0,0 +1,30 @@
+{% extends "base.html" %}
+{% block contenu %}
+<h2>Foire Aux Questions</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 %}