{% extends "base.html" %} {% block title %}Stock Dashboard{% endblock %} {% block content %}

Stock Dashboard

Low Stock Alerts
{% if low_stock %}
{% for product in low_stock %} {% endfor %}
Product Current Stock Min Level
{{ product.name }} {{ product.current_stock|default:0 }} {{ product.min_stock_level }}
{% else %}
No low stock items!
{% endif %}
Recent Stock Movements
{% for movement in recent_movements %} {% empty %} {% endfor %}
Date Product Type Qty
{{ movement.date|date:"SHORT_DATETIME_FORMAT" }} {{ movement.product.name }} {{ movement.get_movement_type_display }} {{ movement.quantity }}
No recent movements
{% endblock %}