29 lines
969 B
HTML
29 lines
969 B
HTML
<!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>
|
|
<h1>Statistiques d'utilisation du site</h1>
|
|
<p>Ces {{MAX_LOG_DAYS}} derniers jours, des salles ont été recherchées {{nbping}} fois.</p>
|
|
{% if nbping>PING_WARN %}
|
|
<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>
|
|
{% endif %}
|
|
{% if depts != [] : %}
|
|
<h1>Départements les plus recherchés</h1>
|
|
<ul>
|
|
{% for dept in depts: %}
|
|
<li><strong>{{ dept[0] }}</strong> (recherché {{dept[1]}} fois)</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</main>
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|