add stats

This commit is contained in:
2023-07-24 20:56:46 +02:00
parent e90e27fc3d
commit 082fac9789
11 changed files with 142 additions and 9 deletions

16
templates/stat.html.tera Normal file
View File

@@ -0,0 +1,16 @@
{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
<div class="max-w-screen-lg w-full">
<h1 class="h1">Statstik</h1>
<ol>
{% for s in stat %}
<li>{{s.name}}: {{s.rowed_km}}km</li>
{% endfor %}
</ol>
</div>
{% endblock content%}