{%set active_page = 'shop.html'%} {% extends "shop/base.html" %} {% block pagehead %} {% endblock %} {% block content %}
<- scroll -> {% set count = namespace(value=0) %} {%for barcode in Cart.data()['items']%} {%set product = get_product(barcode) %} {%set items = Cart.data()['items'][barcode] %} {% for item in items %} {% set count.value = count.value + 1 %} {% endfor %} {%endfor%}
Product Size Color Quantity Price Subtotal
{{product.name}}
{{product.selling_price}} {{product.selling_price * item['quantity'] }}


Cart Totals


Subtotal: {{ get_currency_symbol() }}{{ cart_total_price }}

Shipping {%for option in delivery_options%} {%endfor%}
option price
{{option.option}} {{option.price}}

Total: {{ get_currency_symbol() }}

CHECKOUT

{% endblock %}