{% extends 'store/base.html' %} {% block container %}
{% for item in cart %} {% with book=item.book %} {% endwith %} {% endfor %}
# Name Qty Price Action
{{ book.name }} ₱{{ item.total_price }}
{% endblock %} {% block scripts %} {% endblock %}