{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% load pyaa %} {% load pyaa_format %} {% load pyaa_system %} {% block content %}
{% if checkout.checkout_step == "checkout" %}

{{ checkout.title }}

{% if checkout.non_field_errors %}
    {% for error in checkout.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% csrf_token %}

{{ checkout.description }}

{% if checkout.photo_url %} {% endif %}

{% trans 'subtitle.checkout-details' %}

{% if checkout.show_price_data %}
{% trans 'checkout.price' %}: {% format_currency checkout.price checkout.currency false %}
{% endif %} {% if checkout.show_discount_data %}
{% trans 'checkout.discount' %}: {% format_currency checkout.discount checkout.currency false %}
{% endif %} {% if checkout.show_shipping_data %}
{% trans 'checkout.shipping' %}: {% format_currency checkout.shipping_price checkout.currency false %}
{% endif %} {% if checkout.show_delivery_data %}
{% trans 'checkout.delivery' %}: {{ checkout.delivery_description }}
{% endif %}
{% trans 'checkout.total-price' %}: {% format_currency checkout.total_price checkout.currency false %}
{% if checkout.show_address_data %}

{% trans 'subtitle.shipping-address' %}

{{ checkout.shipping_address_description }}

{% endif %} {% if checkout.options and checkout.options|length > 0 %}

{% trans 'subtitle.options' %}

{% element single_field field=checkout.options %} {% endelement %}
{% endif %}
{% elif checkout.checkout_step == "payment" %} {% include 'partials/empty_data.html' %} {% endif %}
{% endblock content %}