{% extends "matrixhosting/base.html" %} {% load static i18n %} {% block title %} Request Details {% endblock %} {% block content %}
{%trans "Details" %}
{%trans "Confirm" %}
{%trans "Success" %}
{% if messages %}
{% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% if not error %}
{% trans "Billed To" %}

{% with request.session.billing_address_data as billing_address %} {{billing_address.full_name}}
{{billing_address.street}}, {{billing_address.postal_code}}
{{billing_address.city}}, {{billing_address.country}} {% if billing_address.vat_number %}
{% trans "VAT Number" %} {{billing_address.vat_number}} {% if pricing.vat_country != "ch" and pricing.vat_validation_status != "not_needed" %} {% if pricing.vat_validation_status == "verified" %} {% else %} {% endif %} {% endif %} {% endif %} {% endwith %}

{% trans "Billed To" %}

{% with request.session.billing_address_data as billing_address %} {{billing_address.full_name}}
{{billing_address.street}}, {{billing_address.postal_code}}
{{billing_address.city}}, {{billing_address.country}} {% if billing_address.vat_number %}
{% trans "VAT Number" %} {{billing_address.vat_number}} {% if pricing.vat_country != "ch" and pricing.vat_validation_status != "not_needed" %} {% if pricing.vat_validation_status == "verified" %} {% else %} {% endif %} {% endif %} {% endif %} {% endwith %}

{{ balance }} CHF

{% trans "Available Balance"%}

{% trans "Order summary" %}

{% trans "Product" %}:  Matrix Chat Hosting

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

{% trans "Memory" %}: {{order.memory}} GB

{% trans "Disk space" %}: {{order.storage}} GB


{% trans "Price Before VAT" %} {{pricing.subtotal|floatformat:2}} CHF


{% trans "Pre VAT" %}

{% trans "With VAT for" %} {{pricing.vat_country}} ({{pricing.vat_percent}}%)

Subtotal

{{pricing.subtotal|floatformat:2}} CHF

{{pricing.price_with_vat|floatformat:2}} CHF

{% if pricing.discount.amount > 0 %}

{{pricing.discount.name}}

-{{pricing.discount.amount|floatformat:2}} CHF

-{{pricing.discount.amount_with_vat|floatformat:2}} CHF

{% endif %}

Total

{{pricing.subtotal_after_discount|floatformat:2}} CHF

{{pricing.price_after_discount_with_vat|floatformat:2}} CHF


{% trans "Your Price in Total" %} {{pricing.total_price|floatformat:2}} CHF

{% csrf_token %}
{% blocktrans with vm_total_price=vm.total_price|floatformat:2 %}By clicking "Place order" you agree to our Terms of Service and this plan will charge your credit card account with {{ vm_total_price }} CHF/month{% endblocktrans %}.
{% endif %}
{% endblock %} {% block js_extra %} {% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {% endblock js_extra %}