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

{% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% if not error %}

{{page_header_text}}

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


{% trans "Date"%}:
{{order.created_at|date:'Y-m-d H:i'}}

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

{% trans "Billed To:"%}

{{user.name}}
{{order.billing_address.street_address}},{{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}.
{% trans "Payment Method:"%}
{{order.cc_brand}} ending **** {{order.last4}}
{{user.email}}

{% trans "Order summary"%}


{% trans "Cores"%} {{vm.cores}}


{% trans "Memory"%} {{vm.memory}} GB


{% trans "Disk space"%} {{vm.disk_size}} GB


{% trans "Total"%}

{{vm.price}} CHF


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