{% extends "page-twocol.html" %} {% load kegweblib %} {% block title %}session detail: {{ session.GetTitle}}{% endblock %} {% block pagetitle %}{{ session.GetTitle}}{% endblock %} {% block col-1 %}
{% 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 %} Keg #{{ chunk.keg.seqn }} ({{ chunk.keg.type }})
{% endif %} {% endfor %}
Drink Count {{ session.drinks.valid.count }} pours, {{session.Volume.ConvertTo.Pint|floatformat:0}} pints
Registered Drinkers {{ session.GetStats.registered_drinkers|length }} drinkers

{% 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 370 100 %}

{% endfor %}
pours
{% for drink in session.drinks.all %} {% include "kegweb/drink-box.html" %} {% endfor %}
 
{% endblock extra-content %}