{% extends "page-twocol.html" %} {% load kegweblib %} {% block title %}main page{% endblock %} {% block col-1 %}
on tap
{% 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 %}
{% endblock col-2 %}