{% extends "inventory_management_app_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Fabric Inventory Local Inventory Entry {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Received Quantity Entry

{% csrf_token %}
{{form.styles|as_crispy_field }}
{{form.invoice|as_crispy_field }}

Fabric Packing List

{% if object %} {% for item in object %} {% endfor %} {% else %} {% endif %}
SL No Roll Roll Quantity Received Quantity Action
{{forloop.counter}} {{ item.roll }} {{ item.roll_quantity }} {{unit}} {{ item.received_quantity }} {{unit}}
No Data Found
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}