{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Inventory', 'url': url_for('inventory.list_stock_items')}, {'text': 'Reports'} ] %} {{ page_header( icon_class='fas fa-chart-pie', title_text='Inventory Reports', subtitle_text='Inventory analytics and reporting', breadcrumbs=breadcrumbs ) }}
{{ _('Total Items') }}
{{ total_items }}
{{ _('Total Warehouses') }}
{{ total_warehouses }}
{{ _('Total Inventory Value') }}
{{ "%.2f"|format(total_value) }} EUR
{{ _('Low Stock Items') }}
{{ low_stock_count }}