{% for tap in taps %}
{% if tap.current_keg %}
{% with tap.current_keg as keg %}
{% include "kegweb/keg-snapshot.html" %}
{% endwith %}
{% endif %}
{% endfor %}
{% endblock col-1 %}
{% block col-2 %}
recent pours
{% for drink in latest_drinks %}
{% include "kegweb/drink-box.html" %}
{% endfor %}