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

{% trans "Invoice"%}

{% trans "Order #"%} {{order.id}}


{% trans "Billed To:"%}

{{user.name}}
{{order.billing_address.street_address}},{{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}.
{% trans "Billed To:"%}
{{order.created_at}}

{% trans "Status:"%}
{{order.status}}

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

{% trans "Order summary"%}


{% trans "Type"%} {{order.vm_plan.hosting_company_name}}


{% trans "Configuration"%} {{order.vm_plan.get_configuration_display}}


{% trans "Cores"%} {{order.vm_plan.cores}}


{% trans "Memory"%} {{order.vm_plan.memory}} GiB


{% trans "Disk space"%} {{order.vm_plan.disk_size}} GiB


{% trans "Total"%}

{{order.vm_plan.price}} CHF


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