diff options
Diffstat (limited to 'templates/faq.html')
-rw-r--r-- | templates/faq.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/faq.html b/templates/faq.html index 162f68d..b382dd4 100644 --- a/templates/faq.html +++ b/templates/faq.html | |||
@@ -3,8 +3,8 @@ | |||
3 | <h2>Foire Aux Questions (FAQ)</h2> | 3 | <h2>Foire Aux Questions (FAQ)</h2> |
4 | 4 | ||
5 | <div id="sommaire"> | 5 | <div id="sommaire"> |
6 | <ul>{% for cat in lcateg %} | 6 | <ul>{% for i in range(lcateg|length) %} |
7 | <li><a href="#{{ cat }}">{{ cat }}</a></li> | 7 | <li><a href="#{{ lcategsimple[i] }}">{{ lcateg[i] }}</a></li> |
8 | {% endfor %} | 8 | {% endfor %} |
9 | </ul> | 9 | </ul> |
10 | </div> | 10 | </div> |
@@ -13,7 +13,7 @@ | |||
13 | {% for i in range(lcateg|length) %} | 13 | {% for i in range(lcateg|length) %} |
14 | {% set qr = tableqr[i] %} | 14 | {% set qr = tableqr[i] %} |
15 | 15 | ||
16 | <h3 id="{{ lcateg[i] }}">{{ lcateg[i] }}</h3> | 16 | <h3 id="{{ lcategsimple[i] }}">{{ lcateg[i] }}</h3> |
17 | <ul> | 17 | <ul> |
18 | {% for (q,r) in qr %} | 18 | {% for (q,r) in qr %} |
19 | <li><p><strong>Q : </strong>{{ q|safe }}</p> | 19 | <li><p><strong>Q : </strong>{{ q|safe }}</p> |