{% 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 }}

{{ _('Available Reports') }}

{{ _('Stock Valuation') }}

{{ _('View inventory value by warehouse') }}

{{ _('Movement History') }}

{{ _('Detailed movement log') }}

{{ _('Turnover Analysis') }}

{{ _('Inventory turnover rates') }}

{{ _('Low Stock Report') }}

{{ _('Items below reorder point') }}

{% endblock %}