{% extends "page-twocol.html" %} {% load icanhaz %} {% load kegweblib %} {% block kb-extrajs %} {% icanhaz "systemevent" %} {% icanhaz "systemevent_drink_poured" %} {% icanhaz "systemevent_list" %} {% icanhaz "systemevent_keg_started" %} {% icanhaz "systemevent_keg_ended" %} {% endblock %} {% block bodyattrs %}ng-app="KegwebApp"{% endblock %} {% block col-1 %} {% if have_taps %} {% verbatim %}

{{ tap.current_keg.type.name }} {{ tap.name }}

  • Poured
  • Remaining
  • Temperature
{% endverbatim %} {% else %}

No Kegs on Tap

It might be time for a beer run. {% if user.is_staff %} (Want to tap a keg?) {% endif %}

{% endif %} {% if sessions %} {% if current_session %}

Now Drinking (details)

{% with current_session.events.short_timeline as events %} {% include 'kegweb/includes/timeline.html' %} {% endwith %} {% elif last_session %}

Last Session (ended {% timeago last_session.end_time %})

{% with last_session.events.short_timeline as events %} {% include 'kegweb/includes/timeline.html' %} {% endwith %} {% endif %}
See all sessions.
{% endif %} {% endblock col-1 %} {% block col-2 %} {% if have_events %}

Recent Activity

{% else %}

No Activity

Everything feels so fresh.

{% endif %} {% endblock col-2 %}