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

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

{{page_header_text}}

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


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

{% if order %} {% trans "Status:"%}
{% if order.status == 'Approved' %} {% trans "Approved" %} {% else %} {% trans "Declined" %} {% endif %}

{% endif %}

{% trans "Billed To:"%}

{% if order %} {{user.name}}
{{order.billing_address.street_address}},{{order.billing_address.postal_code}}
{{order.billing_address.city}}, {{order.billing_address.country}}. {% else %} {% with request.session.billing_address_data as billing_address %} {{billing_address|get_value_from_dict:'cardholder_name'}}
{{billing_address|get_value_from_dict:'street_address'}}, {{billing_address|get_value_from_dict:'postal_code'}}
{{billing_address|get_value_from_dict:'city'}}, {{billing_address|get_value_from_dict:'country'}}. {% endwith %} {% endif %}
{% trans "Payment Method:"%}
{% if order %} {{order.cc_brand}} {% trans "ending in" %} **** {{order.last4}}
{{user.email}} {% else %} {{cc_brand}} {% trans "ending in" %} **** {{cc_last4}}
{{request.session.user.email}} {% endif %}

{% trans "Order summary"%}


{% if request.session.specs %} {% with request.session.specs as vm %}

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


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


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


{% trans "Configuration"%} {{request.session.template.name}}


{% trans "Total"%}

{{vm.price}} CHF /{% trans "Month" %}

{% endwith %} {% else %}

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


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


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


{% trans "Total"%}

{{vm.price}} CHF /{% trans "Month" %}

{% endif %}

{% if not order %}
{% csrf_token %}

{% blocktrans with vm_price=request.session.specs.price %}By clicking "Place order" this plan will charge your credit card account with the fee of {{ vm_price }}CHF/month{% endblocktrans %}.

{% endif %}
{% endif %}
{%endblock%}