{% extends "page-twocol.html" %} {% load kegweblib %} {% block title %}drink {{ drink.seqn }} by {{ drink.user.username }}{% endblock %} {% block col-1 %}
drink {{ drink.seqn }}{% if drink.user %} by {{ drink.user.username }}{% endif %}
{% if drink.keg %} {% endif %}
Size {{ drink.Volume.ConvertTo.Ounce|floatformat:2 }} ounces
When {% timeago drink.starttime %}
(took {{drink.PourDuration.seconds}} second{{drink.PourDuration.seconds|pluralize}} to pour)
Keg {{drink.keg.type.name}}
{% endblock %} {% block col-2 %}
this session
{% with drink.GetSession as session %}
Drinkers {{session.users.count}}
Volume {{session.Volume.ConvertTo.Pint|floatformat:1}} pints
{% endwith %}
{% endblock %}