{% extends 'base.html' %} {% block title %}Inventory Dashboard - Manufacturing App{% endblock %} {% block content %}

Inventory Dashboard

Add Product
{{ products|length }}
Total Products

Active products in inventory

View Products
{{ warehouses|length }}
Warehouses

Storage locations

View Warehouses
{{ categories|length }}
Categories

Product categories

View Categories
Low Stock Alert
{% if low_stock_products %}
{% for product in low_stock_products %} {% endfor %}
Product Quantity Status
{{ product.name }} {{ product.total_quantity }} Low Stock
{% else %}

No low stock items

{% endif %}
Recent Stock Movements
{% if recent_movements %}
{% for movement in recent_movements %}
{{ movement.product.name }}
{{ movement.created_at|date:"M d, Y" }}

{{ movement.get_movement_type_display }}: {{ movement.quantity }}

{{ movement.warehouse.name }}
{% endfor %}
{% else %}

No recent movements

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}