{% extends 'base.html' %} {% block title %}Returns{% endblock title %} {% load static %} {% block page_style %} {% endblock page_style %} {% block page_js %} {% endblock page_js %} {% block page_content %} {% include 'messages.html' %}
{% if products|length > 0 %} {% for product in products %} {% endfor %}
#NameSku codeQtyManufacturerSupplier
{{ product.num }}. {{ product.name }} {{ product.sku_code }} {{ product.quantity }} {{ product.manufacturer }} {{ product.supplier }}
{% else %}
No products have been returned yet
{% endif %}
{% endblock page_content %}