{% extends "page-twocol.html" %} {% load kegweblib %} {% load humanize %} {% block title %}session detail: {{ session.GetTitle}}{% endblock %} {% block pagetitle %}{{ session.GetTitle}}{% endblock %} {% block col-1 %}

Summary

{% with session.keg_chunks.all as keg_chunks %} {% endwith %}
When {{session.start_time}}
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, {% volume session.volume_ml %}
Registered Drinkers {{ stats.registered_drinkers|length }} drinker{{ stats.registered_drinkers|length|pluralize }}
{% comment %} {% for chunk in session.UserChunksByVolume %} {% if chunk.user %}
{% with chunk.user as drinker %} {% mugshot_box drinker 96 %} {% endwith %}
{% endif %} {% endfor %} {% endcomment %}

Drinkers by Volume

{% for chunk in session.UserChunksByVolume %} {% endfor %}
{% with chunk.user as drinker %} {% mugshot_box drinker 96 %} {% endwith %} {{ forloop.counter|ordinal }} {% if chunk.user %}{{ chunk.user }}{% else %}anonymous{% endif %}
{% chart user_session_chunks chunk 350 100 %}
{% with session.pictures.all as pictures %} {% if pictures.count %}

Beer Goggles!

{% include "kegweb/picture-gallery.html" %}
{% endif %} {% endwith %} {% endblock col-1 %} {% block col-2 %}

Drinker Breakdown

{% chart users_by_volume stats 350 250 %}

All Pours

{% for drink in session.drinks.all %} {% include "kegweb/drink-box.html" %} {% endfor %}
{% endblock col-2 %}