{% extends 'core/base.html' %} {% load static %} {% load currency_filters %} {% block title %}Inventory Dashboard - SwiftPOS{% endblock %} {% block topbar_title %} Inventory {% endblock %} {% block content %}
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
Estimated Net Worth

{% money total_inventory_worth %}

Combined value of all active stock in inventory
Total Products

{{ total_products }}

Unique SKUs
Total Stock Count

{{ total_stock }}

All units combined
Low Stock

{{ low_stock_count }}

Needs Attention
Out of Stock

{{ out_of_stock_count }}

Action Required
Low Stock Alert
View all
{% if low_stock_products %} {% for product in low_stock_products %}
{{ product.name }}
{{ product.sku }}
{{ product.stock_quantity }} left
{% endfor %} {% else %}
Stock is Healthy

No items are currently running low.

{% endif %}
Out of Stock
Restock
{% if out_of_stock_products %} {% for product in out_of_stock_products %}
{{ product.name }}
{{ product.sku }}
Empty
{% endfor %} {% else %}
Fully Stocked

You have no empty products.

{% endif %}
{% endblock %}