{% load static %}
{% if not purchase_list %}

No purchase available yet! Please use the New Purchase button to add some.

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