{% extends "base.html" %} {% load kegweblib %} {% block title %}Drink {{ drink.id }} by {{ drink.user.username }} | {{ block.super }}{% endblock %} {% block pagetitle %}Drink {{ drink.id }} by {{ drink.user.username }}{% endblock %} {% block content %}
{% if drink.keg %} {% endif %}
Size {% volume drink.volume_ml %} {% if drink.duration %} (took {{drink.duration}} second{{drink.duration|pluralize}} to pour) {% endif %}
When {% timeago drink.time %}
Keg {{drink.keg.type.name}}
Session {{ drink.session.GetTitle }} ({{ drink.session.summarize_drinkers|safe }})
Permalink {{ drink.ShortUrl }}
{% with drink.pictures.all as pictures %} {% if pictures.count %}
{% endif %} {% endwith %}
{% endblock content %}