{% extends "vendor/base.html" %} {% load i18n %} {% block title %}{% trans 'Cart' %}{% endblock %} {% block vendor_content %}
{% if invoice %}

{% trans 'Your Cart' %}

{% if object_list %} {% for items in object_list %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Per Item Cost' %} {% trans 'Cost' %} {% trans 'Delete' %}
{{ items.offer.product.name }}
{% csrf_token %}
{{ items.price|localize }} {{ items.total|localize }} {% trans 'Remove Item' %}

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

{% trans 'Checkout' %}

{% else %}

{% trans 'No items in the cart' %}

{% endif %} {% else %}

{% trans 'No active Cart' %}

{% endif %} {% trans 'Add item' %}
{% endblock %}