{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Inventory', 'url': url_for('inventory.list_stock_items')}, {'text': 'Stock Levels'} ] %} {{ page_header( icon_class='fas fa-list-ul', title_text='Stock Levels', subtitle_text='View inventory levels across warehouses', breadcrumbs=breadcrumbs ) }}
{% for stock in stock_levels %} {% else %} {% endfor %}
{{ _('Warehouse') }} {{ _('Item') }} {{ _('On Hand') }} {{ _('Reserved') }} {{ _('Available') }} {{ _('Location') }}
{{ stock.warehouse.code }} - {{ stock.warehouse.name }} {{ stock.stock_item.name }} ({{ stock.stock_item.sku }}) {{ stock.quantity_on_hand }} {{ stock.quantity_reserved }} {{ stock.quantity_available }} {% if stock.stock_item.reorder_point and stock.quantity_on_hand < stock.stock_item.reorder_point %} {% endif %} {{ stock.location or '—' }}
{{ _('No stock levels found.') }}
{% endblock %}