{% extends 'plans/base.html' %} {% load i18n %} {% block body %}

{% trans "Confirm order" %}

{% if FREE_ORDER %} {# Free order is when user downgrades a plan and there is no additional payment it is handle by special a view. #} {% with object as order %} {% include "plans/order_detail_table.html" %} {% endwith %}
{% blocktrans %}If you downgrade your plan please remember that new lower limits are used immediately after finishing the order.{% endblocktrans %}
{% csrf_token %}
{% else %}
{% with object as order %} {% include "plans/order_detail_table.html" %} {% endwith %}

{% trans "Invoice" %}

{% url "billing_info" as billing_info_url %} {% with billing_info_url|add:"?next="|add:request.get_full_path as billing_info_url %} {% if billing_info %}

{% blocktrans %} Invoice for this order will be issued for: {% endblocktrans %}

{{ billing_info.name }}
{{ billing_info.street }}
{{ billing_info.zipcode }} {{ billing_info.city }}, {{ billing_info.country }}

{% trans "VAT ID" %} {{ billing_info.tax_number }}

{% blocktrans %} If this data is not correct please edit billing data before making an order. {% endblocktrans %}

{% else %} {% block invoice-alert %}

{% blocktrans %} Invoice will not be issued. If you need an invoice please provide billing data before making an order. {% endblocktrans %}

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

{{ form.as_p }} {% csrf_token %}

{% endif %} {% endblock %}