{% extends "page-twocol.html" %} {% load kegweblib %} {% load humanize %} {% block title %}{{ session.GetTitle }} | {{ block.super}}{% endblock %} {% block pagetitle %} {{ session.GetTitle }} {{ session.start_time|date:"l, F jS, P" }} {% endblock %} {% block col-1 %} {% with session.events.timeline as events %} {% include 'kegweb/includes/timeline.html' %} {% endwith %} {% endblock col-1 %} {% block col-2 %} {% with session.keg_chunks.all as keg_chunks %} {% endwith %}
Session Summary
Keg{{keg_chunks.count|pluralize}} {% for chunk in keg_chunks %} {% if chunk.keg %} Keg #{{ chunk.keg.id }} ({{ chunk.keg.type }})
{% endif %} {% endfor %}
Total {{ session.drinks.count }} pours, {% volume session.volume_ml %}
Drinkers {{ stats.registered_drinkers|length }} drinker{{ stats.registered_drinkers|length|pluralize }}
{% chart users_by_volume stats 300 250 %}
{% with session.UserChunksByVolume as chunks %} {% if chunks %} {% for chunk in session.UserChunksByVolume %} {% endfor %}
Drinker Volume
{% drinker_name chunk.user %} {% volume chunk.volume_ml %}
{% endif %} {% endwith %} {% endblock col-2 %}