{% extends "base.html" %} {% block title %}Inventory Twin{% endblock %} {% block page_title %}Inventory Twin{% endblock %} {% block content %}
No inventory items in database yet.
| SKU | Name | Category | On Hand | Available | Reorder Pt | Unit Cost | Status | Value | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ item.sku }} | {{ item.name }} | {{ item.category or 'General' }} | {{ item.quantity_on_hand or 0 }} | {{ item.quantity_available or 0 }} | {{ item.reorder_point or 0 }} | {{ item.unit_cost | format_currency }} | {% if item.is_low_stock() %} Low {% elif item.is_overstock() %} Over {% else %} OK {% endif %} | {{ item.stock_value() | format_currency }} |