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

Crew-Ansicht

Buchen für {{ tab_user.username }}

{% if booked_drink %}
Gebucht: +1 {{ booked_drink.name }}{% if booked_free %} (gratis){% elif 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 %}

Zahlung eintragen

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

Getränk buchen

{% csrf_token %}
{% for drink in drinks %} {% 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 %}