{% extends 'core/base.html' %} {% load static %} {% load currency_tags %} {% 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 %}
Total Products
{{ total_products }}
Unique SKUs
Total Stock
{{ total_stock }}
Units available
Net Worth
{{ total_net_worth|format_currency }}
Stock Value (Cost)
Low Stock
{{ low_stock_count }}
Needs attention
Out of Stock
{{ out_of_stock_count }}
Unavailable
Low Stock Alert
View all
{% if low_stock_products %} {% for product in low_stock_products %}
{{ product.name }}
{{ product.sku }}
{{ product.stock_quantity }}
{% endfor %} {% else %}

No low stock products 🎉

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

No out of stock products.

{% endif %}
{% endblock %}