{% extends "kegadmin/base.html" %} {% load kegweblib %} {% load crispy_forms_tags %} {% block title %}Kegbot Admin: Edit Tap: {{ tap.name }} | {{ block.super }}{% endblock %} {% block pagetitle %}Kegbot Admin: Edit Tap: {{ tap.name }}{% endblock %} {% block kegadmin-main %} {% if current_keg %}

Current Keg

Keg {{ current_keg }}
Tapped {{ current_keg.start_time }}
Volume {% volume current_keg.remaining_volume %} remaining ({{ current_keg.percent_full|floatformat:2 }}% full)
{% crispy end_keg_form %}

Add Drink

Manually record a drink using the form below. You may leave the username field blank to add an anonymous pour.

{% csrf_token %}
{% if kbsite.settings.volume_display_units == 'metric' %} mL {% else %} oz {% endif %}
{% else %}

Empty Tap, Activate Keg

{% crispy activate_keg_form %} {% endif %}

Tap Settings

{% crispy tap_settings_form %}

Delete Tap

{% crispy delete_tap_form %} {% endblock %}