{% extends "suff/base.html" %} {% block content %}

Crew-Ansicht

Buchen für {{ tab_user.username }}{% if is_anonymous_target %} (Bar / Anonym){% endif %}

{% if booked_drink %}
Gebucht: +1 {{ booked_drink.name }}{% if is_anonymous_target %} (bar bezahlt){% endif %}
{% endif %} {% if paid_toast %}
Zahlung gespeichert.
{% endif %} {% if is_anonymous_target %}

Anonyme Buchungen werden automatisch als bar bezahlt eingetragen.

{% else %}
Rechnung {{ total|floatformat:2 }} € {% if paid %} Bezahlt {{ paid|floatformat:2 }} € Offen {{ open_balance|floatformat:2 }} € {% endif %}
{% if open_balance > 0 %}

Zahlung eintragen

{% endif %} {% endif %} {% if phase == "booking" %}

Getränk buchen

{% for drink in drinks %}
{% csrf_token %}
{% endfor %}
{% endif %}

Bisher gebucht

{% if consumption_list %} {% regroup consumption_list by get_day_display as day_groups %} {% for group in day_groups %}

{{ group.grouper }}

{% endfor %} {% else %}

🍺

Noch nichts gebucht.

{% endif %}
{% endblock %}