{% extends 'statsy/base.html' %} {% load static from staticfiles %} {% block script %} {% endblock %} {% block title %} Statsy | Dashboard {% endblock %} {% block content %}

Overview

Groups: {% for group in groups %} {% endfor %}
Events: {% for event in events %} {% endfor %}
Most recent stats {% for stats in last_stats %} {% endfor %}
Group Event Label Value Time
{{ stats.group }} {{ stats.event }} {% if stats.label %}{{ stats.label }}{% endif %} {% if stats.value %}{{ stats.value }}{% endif %} {{ stats.created_at|date:"H:i:s" }}
...
{% endblock %}