{% load static %}
{% if not sales_list %}

No records found!

{% endif %}
{% if sales_list %}
Name
Quantity
Unit Price
Total Amount
Seller
Date of Sell
{% for sale in sales_list %}
{{ sale.name }}
{{ sale.quantity }}
{{ sale.unit_price }}
{{ sale.total_amount }}
{{ sale.sold_by }}
{{ sale.sold_at }}
{% endfor %} {% endif %}