{% 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 %}

{{ balance }} CHF

{% trans "Available Balance"%}

Matrix Chat Hosting
{% trans "Cores" %} {% trans "Memory" %} {% trans "Disk space" %}
{{order.cores}} {{order.memory}} GB {{order.storage}} GB

Subtotal

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

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

{{pricing.discount.name }}

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

{% endif %}

{% trans "" %}

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

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

CHF

{% trans "Total" %}

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


{% csrf_token %}
By clicking "Place order" you agree to our Terms of Service and this plan will charge your account balance with {{pricing.total|floatformat:2}} CHF
{% endif %}
{% endblock %} {% block js_extra %} {% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {% endblock js_extra %}