{% extends "new_base_glarus.html" %} {% load staticfiles bootstrap3 i18n %} {% block content %}

Your Booking Detail


{% bootstrap_form_errors form type='non_fields'%} {% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %}

InvoiceGet PDF

Order Number

#{{order.id}}

Status

{{order.get_status_display}}

Billed to :

{{user.name}}
{{order.billing_address.street_address}},{{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}.

Payment Method

{{order.cc_brand}} ending **** {{order.last4}}
{{user.email}}


Order Summary

Dates: {{start_date}} - {{end_date}}

Total days {{booking_days}}

{{original_price|floatformat}}CHF

{% if free_days %}

Free days {{free_days}}

-{{total_discount|floatformat}}CHF

{% endif %}

Total

{{final_price|floatformat}}CHF

{% if not order.get_status_display == 'Cancelled' %}
{% csrf_token %}

Go to my page

{% else %}

Go to my page

{% endif %}

Order Summary

Dates: {{start_date}} - {{end_date}}

Total days {{booking_days}}

{{original_price|floatformat}}CHF

{% if free_days %}

Free days {{free_days}}

-{{total_discount|floatformat}}CHF

{% endif %}

Total

{{final_price|floatformat}}CHF

{% if stripe_key %} {%endif%} {% endblock %}