rowt/templates/stat.html.tera

18 lines
286 B
Plaintext
Raw Normal View History

2023-07-24 20:56:46 +02:00
{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
2023-07-30 14:33:50 +02:00
<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>
2023-07-24 20:56:46 +02:00
{% endblock content%}