{% for booking in bookings %}
{{ booking.description }}
{{ booking.planned_amount }} €
{{ booking.get_status.name }}
{# Delete #}
{% if booking.status == 0 or booking.status == 1 %}
{% endif %}
{# Edit #}
{% if booking.status == 0 %}
{% endif %}
{% endfor %}