{% extends "page-twocol.html" %} {% load kegweblib %} {% block title %}all-time system stats{% endblock %} {% block col-1 %}
Total Drinks | a total of {{ stats.total_count }} pour{{ stats.total_count|pluralize }} have been recorded. |
Average Pour | the average pour size is {{ stats.volume_avg.average|volume:"ounces"|floatformat }} oz. |
{% for volume,user in top_drinkers %} {% include "kegweb/volume-user.html" %} {% endfor %} |