{% 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 }}
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 %}
{% include "footer.html" %} {% endblock content %}