blob: 301f5d757d69f0dd11714f2982c67177cb0e1e22 (
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</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 %}
|