arrowcounter/counter/templates/index.html
Claudio Maggioni (maggicl) 8e9d185293 Added excel export
2019-04-28 15:51:25 +02:00

29 lines
1016 B
HTML

{% extends 'base.html' %}
{# vim: set ts=2 sw=2 et tw=80: #}
{% block title %}Home{% endblock %}
{% block content %}
<h1 class="center">Arrow counter</h1>
<h5 class="center">A simple online arrow counter</h5>
<p class="center" style="margin-bottom: 3rem">
<a class="btn waves-effect waves-light" href="{% url "count_export" %}">
Excel Data (CSV) <i class="material-icons right">file_download</i>
</a>
</p>
{% if user.is_authenticated %}
<div class="card-panel grey lighten-2">
<h5 class="center">Arrows shot this year:</h5>
<p class="center"><strong style="font-size: 2.7rem">{{ yearArrows }}</strong></p>
</div>
<div class="card-panel grey lighten-2">
<h5 class="center">Arrows shot this month:</h5>
<p class="center"><strong style="font-size: 2.7rem">{{ monthArrows }}</strong></p>
</div>
<div class="card-panel grey lighten-2">
<h5 class="center">Arrows shot this week:</h5>
<p class="center"><strong style="font-size: 2.7rem">{{ weekArrows }}</strong></p>
</div>
{% endif %}
{% endblock %}