{% load static %}
{% if not stocks %}

No records found!

{% endif %}
{% if stocks %}
Name
Description
Quantity
Unit Price
Stock Level
{% for stock in stocks %}
{{ stock.name }}
{{ stock.description }}
{{ stock.quantity }}
{{ stock.unit_price }}
{{ stock.stock_level }}
{% endfor %} {% endif %}