20 lines
458 B
Plaintext
20 lines
458 B
Plaintext
{% import "includes/macros" as macros %}
|
|
|
|
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="max-w-screen-lg w-full">
|
|
<h1 class="h1">Statistik</h1>
|
|
<ol class="mt-3">
|
|
{% for s in stat %}
|
|
<li class="{% if loop.index % 2 == 0 %} bg-gray-200 {% else %} bg-white {% endif %} flex justify-between px-3 py-1">
|
|
<span>{{s.name}}</span>
|
|
<span>{{s.rowed_km}} km</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
{% endblock content%}
|