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

Warehouse Tables

Warehouse Table

Filter
{{ filter.form.as_p }}
Warehouse
{% if filter.is_bound %} {% for inventory in filter.qs %} {% endfor %} {% else %} {% for inventory in inventory_list %} {% endfor %} {% endif %}
Inventory Name Current Stock Max Stock Stock Percentage
Inventory Name Current Stock Max Stock Stock Percentage
{{ inventory.stock_identifier }} {{ inventory.current_stock }} {{ inventory.max_stock }} {{ inventory.stock_percentage|floatformat:3 }}
{{ inventory.stock_identifier }} {{ inventory.current_stock }} {{ inventory.max_stock }} {{ inventory.stock_percentage|floatformat:3 }}
{% include "footer.html" %} {% endblock content %}