{% extends "base.html" %} {% block content %}
{% include "nav.html" %}

{{ warehouse_name }}

Order Listing

Filter
{{ filter.form.as_p }}
Order
{% if filter.is_bound %} {% for supply in filter.qs %} {% comment %} {% endcomment %} {% endfor %} {% else %} {% for supply in supply_list %} {% comment %} {% endcomment %} {% endfor %} {% endif %}
ID Supplier Item Quantity Arrive Date
ID Supplier Item Quantity Arrive Date
{{ inventory.stock_identifier }}{{ supply.id }} {{ supply.supplier }} {{ supply.item }} {{ supply.quantity }} {{ supply.arrive_date }}
{{ inventory.stock_identifier }}{{ supply.id }} {{ supply.supplier }} {{ supply.item }} {{ supply.quantity }} {{ supply.arrive_date }}
{% include "footer.html" %} {% endblock content %}