{% extends "vendor/base.html" %} {% load l10n %} {% block title %}Cart{% endblock %} {% block content %}
{% if invoice %}

Your Cart

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

Total number of cart items: {{ item_count }}

Checkout

{% else %}

No items in the cart

{% endif %} {% else %}

No active Cart

{% endif %} Add item
{% endblock %}