{% extends 'base.html' %} {% block title %}Products{% endblock title %} {% block page_content %} {% include 'messages.html' %}
{% if stock_list|length > 0 %} {% for item in stock_list %} {% endfor %}
#NameSKU CodeSupplierBuyingRetail
{{ item.date }} {{ item.name }} {{ item.sku_code }} {{ item.supplier }} {{ item.buying_price }} {{ item.retail_price }}
{% else %}
No products have been added yet
{% endif %}
{% endblock page_content %}