{% load static %}
{% if not purchases %}

No records found!

{% endif %}
{% if purchases %}
Name
Description
Quantity
Cost Price
Current Stock Level
Total Stock Level
Supplier Tel.
{% for purchase in purchases %}
{{ purchase.name }}
{{ purchase.description }}
{{ purchase.quantity }}
{{ purchase.cost_price }}
{{ purchase.current_stock_level }}
{{ purchase.total_stock_level }}
+{{ purchase.supplier_tel }}
{% endfor %} {% endif %}