rowt/templates/stat.html.tera

17 lines
279 B
Plaintext
Raw Normal View History

2023-07-24 20:56:46 +02:00
{% 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%}