{% extends 'base.html' %} {% block title %} Inventory || POS {% endblock %} {% block content %}

12:00 PM

Default Customer

{% for item in cart %} {% with product=item.product %} {% endwith %} {% endfor %}
Product Name Price Quantity Del
{{ product.title }} {{ product.price }}
{% csrf_token %}
{% endblock %}