{% extends "vendor/base.html" %} {% load i18n %} {% block vendor_content %}
{% for items in object_list %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Per Item Cost' %} {% trans 'Cost' %}
{{ items.offer.product.name }} {{ items.quantity }} {{ items.price }} {{ items.total }}

{% blocktrans with item_count=item_count %}Total number of items: {{item_count}} {% endblocktrans %}

{% trans 'Order Total' %}: {{order_total}}

{% csrf_token %}

{% trans 'Back To Cart' %}
{% endblock %}