2022-06-14 11:53:17 +02:00
<!DOCTYPE html>
< html lang = "" >
< head >
< meta charset = "utf-8" >
< title > UniSquat< / title >
< link rel = "stylesheet" type = "text/css" href = "../static/style.css" >
< meta name = "viewport" content = "width=300, initial-scale=1" / >
< / head >
< body >
{% include "base.html" %}
< main >
2022-09-07 19:02:26 +02:00
< h1 > < span aria-hidden = "true" > 🔢 < / span > Statistiques d'utilisation du site< / h1 >
2022-06-18 13:12:43 +02:00
< p > Ces {{MAX_LOG_DAYS}} derniers jours, des salles ont été recherchées {{nbping}} fois.< / p >
2022-06-14 11:53:17 +02:00
{% if nbping>PING_WARN %}
2022-06-18 13:12:43 +02:00
< p > ⚠ Ce site commence a être < strong > surchargé< / strong > ! N'hésitez pas à héberger votre propre instance d'UniSquat :) < a href = "https://forge.chapril.org/Wantoo/UniSquat_Python" > En savoir plus< / a > < / p >
2022-06-14 11:53:17 +02:00
{% endif %}
2022-06-19 13:23:56 +02:00
{% if depts != [] : %}
2022-09-07 19:02:26 +02:00
< h1 > < span aria-hidden = "true" > 🏫 < / span > Départements les plus recherchés< / h1 >
2022-06-19 13:23:56 +02:00
< ul >
{% for dept in depts: %}
< li > < strong > {{ dept[0] }}< / strong > (recherché {{dept[1]}} fois)< / li >
{% endfor %}
< / ul >
2022-09-07 19:02:26 +02:00
{% endif %}
{% if favs != [] : %}
< h1 > < span aria-hidden = "true" > ⭐ < / span > Salles préférées des utilisateurices< / h1 >
< ul >
{% for fav in favs: %}
< li > < strong > {{ fav[0] }}< / strong > ({{fav[1]}}, recherchée {{fav[2]}} fois)< / li >
{% endfor %}
< / ul >
2022-06-19 13:23:56 +02:00
{% endif %}
2022-06-14 11:53:17 +02:00
< / main >
{% include "footer.html" %}
< / body >
< / html >