haldis/app/templates/stats.html
Wout Schellaert 30a5d05362 Fix errors
2016-09-10 23:25:09 +02:00

14 lines
430 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 %}