{% extends 'inventory/base.html' %} {% block title %}Product List{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

PRODUCTS LIST

{% for product in products %} {% endfor %}
CODE Product Name Category Type Unit of Measure Supplier Price Quantity in Stock Actions
{{ product.pid }} {{ product.product_name }} {{ product.category }} {{ product.productType }} {{ product.uom }} {{ product.supplier_id }} KSH. {{ product.price }} {{ product.quantity_in_stock }} Details
{% for product in products %} {% endfor %}
{% endblock %}