{% load static %}
{% if not product_list %}

No stocks available yet! Please use the New Product button to add some.

{% else %}
Name
Description
Quantity
Unit Price
Stock Level
Action
{% for product in product_list %}
{{ product.name }}
{{ product.description }}
{{ product.quantity }}
{{ product.unit_price }}
{{ product.stock_level }}
{% endfor %} {% endif %}