{%set active_page = 'shop.html'%} {% extends "shop/base.html" %} {% block pagehead %} {% endblock %} {% block content %}
{%for item in cart_data%} {%set product = get_product(item)%} {%endfor%}
Product Quantity Price Subtotal
{{product.name}}
{{product.selling_price}} {{product.selling_price * cart_data[item]}}


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() }}

{% endblock %}