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

Hallo {{ tab_user.username }}

{% if booked_drink %}
Gebucht: +1 {{ booked_drink.name }}
{% endif %} {% if paid_toast %}
Zahlung gespeichert. Danke!
{% endif %}
Deine Rechnung {{ total|floatformat:2 }} € {% if paid %} Bezahlt {{ paid|floatformat:2 }} € Offen {{ open_balance|floatformat:2 }} € {% endif %}
{% if open_balance > 0 %}

Bezahlen

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

Neues 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.

{% if phase == "booking" %}

Tipp dich rein, sobald du was trinkst!

{% endif %}
{% endif %}
{% if request.user.is_staff %} {% endif %}
{% csrf_token %}
{% endblock %}