{% extends 'base.html' %} {% load static %} {% block title %}Your Cart — PickkerMarket{% endblock %} {% block content %}
{{ t.cart_step }}

{{ t.cart_title }}{% if is_b2b %} {{ t.cart_b2b_badge }}{% endif %}

{% if items %} {% for item in items %} {% endfor %}
{{ t.cart_col_product }}{{ t.cart_col_price }}{{ t.cart_col_quantity }}{{ t.cart_col_total }}
{% if item.product.image_url %}{% endif %} {{ item.product.name }} {% if item.measure_label %}
{{ item.measure_label }}{% endif %}
TSh {{ item.unit_price|floatformat:0 }}/{% if item.measure_label %}{{ item.measure_label }}{% else %}{{ item.product.unit }}{% endif %}{% if item.min_qty > 1 %}
{{ t.cart_min }} {{ item.min_qty }}{% endif %}
{% csrf_token %}
{{ item.quantity }}
{% csrf_token %}
TSh {{ item.line_total|floatformat:0 }}
{% csrf_token %}
{{ t.cart_subtotal }} TSh {{ subtotal|floatformat:0 }}
{{ t.cart_proceed_checkout }} →
{% else %}

{{ t.cart_empty }} {{ t.cart_browse_market }} {{ t.cart_to_add_produce }}

{% endif %}
{% endblock %}