{% extends "clients/base.html" %} {% block "dashboardcontent" %}

Deine Buchungen

{% for inquiry in object_list %} {% endfor %}

{{ inquiry.arrival.day }}

{{ inquiry.arrival|date:"E Y" }}

{% if inquiry.accepted %}{{ inquiry.accepted.roomcategory.establishment.name }} ({{ inquiry.destination_name }}){% else %}{{ inquiry.destination_name }}{% endif %}

  • Ankunft: {{ inquiry.arrival }}
  • {% if inquiry.accepted %}Abreise{% else %}Dauer{% endif %}: {% if inquiry.accepted %}{{ inquiry.accepted.departure }}{% elif inquiry.min_nights == 0 %}Egal!{% elif inquiry.min_nights == 1 %}Kurztrip (2 – 3 Nächte){% elif inquiry.min_nights == 2 %}min. 3 Nächte{% endif %}
  • Preis: € {{ inquiry.budget }}
  • Status: {% if inquiry.accepted %}Fixiert{% elif inquiry.active %}In Gebotsphase ({{ inquiry.offer_set.all|length }} Gebote){% else %}Inaktiv{% endif %}
{% if inquiry.accepted %} Buchungsdetails {% elif inquiry.active %} Gebote ansehen {% elif inquiry.expired %} {% elif not inquiry.is_paid %} Zahlung abschließen {% endif %}
{% endblock %}