haldis/app/templates/stats.html
Midgard b44d34003d
Make whitespace match convention
Convention according to our EditorConfig.
2020-02-29 17:37:33 +01:00

15 lines
409 B
HTML

{% extends "layout.html" -%}
{% set active_page = "stats" -%}
{% block container %}
<h2>Stats bruh</h2>
<div class="jumbotron">
<h5>
Over
<strong>{{ data.amount.orders }}</strong> orders,
<strong>{{ data.amount.users }}</strong> users have ordered
<strong>{{ data.amount.orderitems }}</strong> items in
<strong>{{ data.amount.locations }}</strong> locations.
</h5>
</div>
{% endblock %}