{% extends 'base.html' %} {% load i18n cart widget_tweaks thumbnail %} {% block meta_title %} {% trans 'Order registration' %} {% endblock %} {% block header %}
{% trans 'Site logo' %} {% trans 'Continue shopping' %}

{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% get_cart as cart %} {% if not cart.is_empty %}

{% trans 'Order registration' %}

{% include 'orders/checkout_form.html' %}

{% trans 'Products' %} ({{ cart.count }})

{% for item in cart.items %}
{% thumbnail item.logo "100x70" crop="center" as img %} {% endthumbnail %}
{{ item.name }}
{% trans 'Price' %}: {{ item.printable_price }}
{% trans 'Quantity' %}: {{ item.qty }}

{% endfor %}
{% trans 'To pay' %}

{{ cart.printable_total }}

{% else %}
{% trans 'Cart is empty' %}. {% trans 'Continue shopping' %}
{% endif %} {% endblock %} {% block js %} {{ block.super }} {{ form.fields.delivery.media }} {% endblock %}