{% load plugshop %}

Cart:

{% if request.cart|length %} {% for cart_item in request.cart %} {% endfor %}
item quantity price actions
{{cart_item.product}} {{cart_item.quantity}} {{cart_item.price_total}}
{% csrf_token %} {% plugshop_action cart_item.product "add" 1 %}

{% csrf_token %} {% plugshop_action cart_item.product "remove" 1 %}

{% csrf_token %} {% plugshop_action cart_item.product "remove_product" %}

Total: {{request.cart.price_total}}

checkout

{% endif %}
{% csrf_token %}