{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 %} {% block content %}

Invoice

Order # {{order.id}}


Billed To:

{{user.name}}
{{order.billing_address.street_address}},{{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}.
Order Date:
{{order.created_at}}

Status:
{{order.status}}

Payment Method:
{{order.cc_brand}} ending **** {{order.last4}}
{{user.email}}

Order summary


Type {{order.vm_plan.hosting_company_name}}


Configuration {{order.vm_plan.get_configuration_display}}


Cores {{order.vm_plan.cores}}


Memory {{order.vm_plan.memory}} GiB


Disk space {{order.vm_plan.disk_size}} GiB


Total

{{order.vm_plan.price}} CHF


{% url 'hosting:payment' as payment_url %} {% if payment_url in request.META.HTTP_REFERER %} {% endif %}
{%endblock%}