{% extends "base.html" %} {% load static %} {% block title %}Inventory Dashboard - {{ block.super }}{% endblock %} {% block content %}

Inventory Dashboard

Total Items

{{ total_items }}

{{ active_items }} active
Locations

{{ total_locations }}

Storage areas
Suppliers

{{ total_suppliers }}

Active partners
Total Value

${{ total_inventory_value|floatformat:0 }}

Inventory worth
Low Stock

{{ low_stock_items }}

Items below minimum
Expired

{{ expired_items }}

Past expiry date
Expiring Soon

{{ expiring_soon_items }}

Within 30 days
Active Orders

{{ active_orders }}

In progress
Recent Purchase Orders
View All
{% if recent_orders %}
{% for order in recent_orders %} {% endfor %}
Order # Supplier Status Amount Date
{{ order.order_number }} {{ order.supplier.name|truncatechars:20 }} {{ order.get_status_display }} ${{ order.total_amount|floatformat:2 }} {{ order.order_date|date:"M d" }}
{% else %}
No recent orders

Create your first purchase order

Create Order
{% endif %}
Low Stock Alerts
View All
{% if low_stock_alerts %} {% for alert in low_stock_alerts %}
{{ alert.item.item_name }}
{{ alert.location.location_name }}
{{ alert.quantity }}
Min: {{ alert.minimum_stock_level }}
{% endfor %} {% else %}
All stock levels are good

No low stock alerts at this time

{% endif %}
Recent Stock Movements
View All
{% if recent_stock_movements %}
{% for stock in recent_stock_movements %} {% endfor %}
Item Location Quantity Updated
{{ stock.item.item_name|truncatechars:25 }} {{ stock.location.location_name|truncatechars:15 }} {{ stock.quantity }} {{ stock.updated_at|date:"M d, H:i" }}
{% else %}
No recent movements

Stock movements will appear here

{% endif %}
Inventory by Category
Stock Status Overview
{% endblock %}