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

Overview

Warehouse Count
{{ warehouse_count }}
Customer Count
{{ customer_count }}
Stock Level
{{ stock_percentage|floatformat:3 }}%
Pending Supply
{{ pending_supply }}
Inventory Count
{{ inventory_count }}
Order Count
{{ order_count }}
Item in Stock
{{ item_count }}
Transfer Count
{{ transfer_count }}
Warehouse Stock Level
{% if warehouse_list|length != 0 %} {% for warehouse in warehouse_list %}

{{ warehouse.name }} {% if warehouse.stock_percentage == 100 %}Complete!{% else %}{{ warehouse.stock_percentage|floatformat:3 }}%{% endif %}

{% endfor %} {% else %}

No Warehouse Available!

{% endif %}
Inventory Stock Level
{% if inventory_list|length != 0 %} {% for inv in inventory_list %}

{{ inv.stock_identifier }} {% if inv.stock_percentage == 100 %}Complete!{% else %}{{ inv.stock_percentage|floatformat:3 }}%{% endif %}

{% endfor %} {% else %}

No Inventory Available!

{% endif %}
{% include "footer.html" %} {% endblock content %}