{% 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%}