{% extends 'base.html' %} {% load humanize %} {% block title %}Inventory Dashboard - Ghana Wholesale{% endblock %} {% block content %}

Inventory Dashboard

Add Product Warehouse Transfers
Total Products
{{ total_products }}
Warehouse Items
{{ total_warehouse_items }}
{{ total_warehouse_quantity }} units
Low Stock Items
{{ low_stock_items }}
Active Shops
{{ total_shops }}
Warehouse Value
GH₵ {{ total_warehouse_value|floatformat:2|intcomma }}

Total inventory value

Items
{{ total_warehouse_items }}
Quantity
{{ total_warehouse_quantity }}
Low Stock Alerts
{{ low_stock_alerts|length }}
{% if low_stock_alerts %}
{% for alert in low_stock_alerts %} {% endfor %}
Product SKU Category Current Stock Reorder Level Status
{{ alert.product.name }} {{ alert.product.sku }} {% if alert.product.category %} {{ alert.product.category.name }} {% endif %} {{ alert.available }} {{ alert.reorder_point }} {% if alert.available == 0 %} Out of Stock {% else %} Low Stock {% endif %}
{% else %}

No low stock alerts

{% endif %}
Recent Transfers
View All
{% if recent_transfers %}
{% for transfer in recent_transfers %} {% endfor %}
Transfer # From Shop To Shop Date Items Quantity Status Actions
{{ transfer.transfer_number }} {% if transfer.priority == 'urgent' %} Urgent {% endif %} {{ transfer.from_shop.name }} {{ transfer.to_shop.name }} {{ transfer.created_at|date:"d M Y" }} {{ transfer.total_items }} {{ transfer.total_quantity }} {% if transfer.status == 'pending' %} Pending {% elif transfer.status == 'approved' %} Approved {% elif transfer.status == 'shipped' %} Shipped {% elif transfer.status == 'delivered' %} Delivered {% endif %} View
{% else %}

No recent transfers

Create Transfer
{% endif %}
System Status
{{ active_products }}
Active Products
{{ out_of_stock_products }}
Out of Stock
{{ low_stock_items }}
Low Stock
{{ total_shops }}
Active Shops
{% if warehouse %}
Warehouse: {{ warehouse.name }} ({{ warehouse.code }}) - {{ total_warehouse_items }} items worth GH₵ {{ total_warehouse_value|floatformat:2 }}
{% else %}
No warehouse found! Create a warehouse to start managing inventory.
{% endif %}
{% endblock %}