diff options
author | Denise sur ardoise <denise@ardoise> | 2022-07-19 22:24:07 +0200 |
---|---|---|
committer | Denise sur ardoise <denise@ardoise> | 2022-07-19 22:24:07 +0200 |
commit | 7aac9b2adb63cf100afc6b97d263a53ef89b9c83 (patch) | |
tree | 7dd6637e8672c35f2c55958814cfb3f0ca948397 /templates | |
parent | 32b3d06150018ed96d071cc0c6281469a880f9e0 (diff) | |
download | oms-7aac9b2adb63cf100afc6b97d263a53ef89b9c83.tar.gz oms-7aac9b2adb63cf100afc6b97d263a53ef89b9c83.tar.zst oms-7aac9b2adb63cf100afc6b97d263a53ef89b9c83.zip |
Version 2.6 plus : pas mal de changements (voir changelog)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/contact.html | 2 | ||||
-rw-r--r-- | templates/faq.html | 6 | ||||
-rw-r--r-- | templates/index.html | 4 |
3 files changed, 7 insertions, 5 deletions
diff --git a/templates/contact.html b/templates/contact.html index 6da2e96..0ed2f1c 100644 --- a/templates/contact.html +++ b/templates/contact.html | |||
@@ -8,7 +8,7 @@ | |||
8 | <li>immae pour l'hébergement et l'aide technique,</li> | 8 | <li>immae pour l'hébergement et l'aide technique,</li> |
9 | <li>cerise pour le coup de peinture sur la façade,</li> | 9 | <li>cerise pour le coup de peinture sur la façade,</li> |
10 | <li>arcanmster pour le côté "je tape partout pour voir si ça casse",</li> | 10 | <li>arcanmster pour le côté "je tape partout pour voir si ça casse",</li> |
11 | <li>les bêta-testeuses enthousiastes du forum LLL, entre autres MmeMarguerite, Maman-chat, bloom et Nerialka</li> | 11 | <li>les bêta-testeuses enthousiastes du forum LLL, entre autres MmeMarguerite, Maman-chat, bloom, Nerialka, ...</li> |
12 | </ul></p> | 12 | </ul></p> |
13 | 13 | ||
14 | {% endblock %} | 14 | {% endblock %} |
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> |
diff --git a/templates/index.html b/templates/index.html index c23cfc1..ace0982 100644 --- a/templates/index.html +++ b/templates/index.html | |||
@@ -198,9 +198,11 @@ | |||
198 | <option value="{{ symb }}" {% if numero_enfant == loop.index %} selected{% endif %}>{{ CONFIG.liste_symboles[symb] | safe}}</option> | 198 | <option value="{{ symb }}" {% if numero_enfant == loop.index %} selected{% endif %}>{{ CONFIG.liste_symboles[symb] | safe}}</option> |
199 | {% endfor %} | 199 | {% endfor %} |
200 | </select> | | 200 | </select> | |
201 | Couleur : <input type="color" name="couleur_donnees_{{ numero_enfant }}" value="{{ valform.couleurs.cadretxt }}"></li>{% endfor %} | 201 | Couleur : <input type="color" name="couleur_donnees_{{ numero_enfant }}" value="{{ valform.couleurs.cadretxt }}"> | |
202 | Alias <span class="petit">(remplace le prénom)</span> : <input type="text" name="alias_{{ numero_enfant }}"></li>{% endfor %} | ||
202 | </ul> | 203 | </ul> |
203 | <p class="bouton" onclick="ajoute_enfants()" id="reveleenfants">Plus d'enfants O_o</p> | 204 | <p class="bouton" onclick="ajoute_enfants()" id="reveleenfants">Plus d'enfants O_o</p> |
205 | |||
204 | </div> | 206 | </div> |
205 | 207 | ||
206 | 208 | ||