haldis/app/templates/stats.html

14 lines
430 B
HTML
Raw Normal View History

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