{% extends "page-twocol.html" %} {% load kegweblib %} {% block title %}{{ session.GetTitle}}{% endblock %} {% block col-1 %}
{{ session.GetTitle }}
{% with session.keg_chunks.all as keg_chunks %} {% endwith %}
When {{session.starttime}}
Keg{{keg_chunks.count|pluralize}} {% for chunk in keg_chunks %} {% if chunk.keg %} {{ chunk.keg }}
{% endif %} {% endfor %}
Drink Count {{ session.drinks.valid.count }} pours, {{session.Volume.ConvertTo.Pint|floatformat:0}} pints

{% for chunk in session.UserChunksByVolume %} {% if chunk.user %}
{% with chunk.user as drinker %} {% mugshot_box drinker 96 %} {% endwith %}
{% endif %} {% endfor %}
{% endblock col-1 %} {% block col-2 %}
drinker breakdown
{% chart users_by_volume session 350 250 %}
{% endblock col-2 %} {% block extra-content %}
drinkers by volume
{% for chunk in session.UserChunksByVolume %}
{% with chunk.user as drinker %} {% mugshot_box drinker 96 %} {% endwith %} {% if chunk.user %}{{ chunk.user }}{% else %}anonymous{% endif %}

{% chart user_session_chunks chunk 400 100 %}

{% endfor %}
 
{% endblock extra-content %}