haldis/app/templates/stats.html

14 lines
430 B
HTML
Raw Normal View History

2015-03-31 20:15:22 +02:00
{% extends "layout.html" -%}
{% set active_page = "stats" -%}
{% block container %}
2016-09-10 16:52:46 +02:00
<h2>Stats bruh</h2>
<div class="jumbotron">
<h5>
2016-09-10 23:01:13 +02:00
Over
<strong>{{ data.amount.orders }}</strong> orders,
<strong>{{ data.amount.users }}</strong> users have ordered
2016-09-10 23:25:09 +02:00
<strong>{{ data.amount.orderitems }}</strong> items in
<strong>{{ data.amount.locations }}</strong> locations.
2016-09-10 16:52:46 +02:00
</h5>
</div>
2015-03-31 20:15:22 +02:00
{% endblock %}