{% extends "matrixhosting/base.html" %} {% load static i18n %} {% block title %} Request Details {% endblock %} {% block content %}
{%trans "Details" %}
{%trans "Confirm" %}
{%trans "Success" %}
{% csrf_token %}

{% trans "Order Details"%}


{% if details_form.non_field_errors %}
{{ details_form.non_field_errors }}
{% endif %}
{{details_form.matrix_domain}} {{ details_form.matrix_domain.errors }}
{{details_form.homeserver_domain}} {{ details_form.homeserver_domain.errors }}
{{details_form.webclient_domain}} {{ details_form.webclient_domain.errors }}
{{details_form.is_open_registration}} {{ details_form.is_open_registration.errors }}
{{details_form.pricing_name.as_hidden}}
Core
{% trans "RAM" %}
{% trans "GB" %}

{%trans "Billing Address"%}


{% for message in messages %} {% if 'vat_error' in message.tags %}
  • {{ message|safe }}
{% endif %} {% endfor %} {% if billing_address_form.non_field_errors %}
{{ billing_address_form.non_field_errors }}
{% endif %}
{{billing_address_form.full_name}} {{ billing_address_form.full_name.errors }}
{{billing_address_form.street}} {{ billing_address_form.full_name.errors }}
{{billing_address_form.city}} {{ billing_address_form.city.errors }}
{{billing_address_form.country}} {{ billing_address_form.country.errors }}
{{billing_address_form.postal_code}} {{ billing_address_form.postal_code.errors }}
{{billing_address_form.vat_number}} {{ billing_address_form.vat_number.errors }}
{% for field in billing_address_form %} {% if field.html_name in 'active,owner' %} {{ field.as_hidden }} {% endif %} {% endfor %}

{% trans "Payment Details"%}


{{ balance }} CHF

{% trans "Available Balance"%}

{% trans "Total To Pay"%}

({% if matrix_vm_pricing.vat_inclusive %}{%trans "including VAT" %}{% else %}{%trans "excluding VAT" %}{% endif %}) {% if matrix_vm_pricing.discount_amount %}
Discount {{matrix_vm_pricing.discount_amount}}CHF
{% endif %}
{{request.session.pricing.total|floatformat}}CHF

{% with cards_len=cards|length %}

{% if cards_len > 0 %} {% blocktrans %}Please select one of the cards that you used before or fill in your credit card information below.{% endblocktrans %} {% else %} {% blocktrans %}Please fill in your credit card information below.{% endblocktrans %} {% endif %}

{% for card in cards %}
{% endfor %} {% if cards_len > 0 %}
{% include "matrixhosting/includes/_card.html" %}
{% else%} {% include "matrixhosting/includes/_card.html" %} {% endif %}
{% endwith %}
{% endblock %} {% block js_extra %} {% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {% endblock js_extra %}