{% extends "base.html" %} {% load kegweblib %} {% block title %}System Stats | {{ block.super }}{% endblock %} {% block pagetitle %}System Stats{% endblock %} {% block content%} {% if not stats %}

No Stats.. yet.

This place will be a lot more interesting once somebody has poured a drink.

{% else %}
{% include "kegweb/basic-badges.html" %} {% include "kegweb/basic-stats.html" %}
{% if largest_session %}
{% with largest_session as session %} {% include "kegweb/keg-session.html" %} {% endwith %}
{% endif %}
{% endif %}
{% if stats %}

Top Drinkers

{% chart users_by_volume stats 280 220 %}
{% with top_drinkers as ranked_drinkers %} {% include "kegweb/drinker-rank.html" %} {% endwith %} {% endif %}
{% endblock %} {% block kb-extrajs %} {% endblock %}