{% extends "tenant/layouts/base.html" %} {% block title %}Inventory{% endblock %} {% block content %}
| Name | SKU | Category | On Hand | Reorder At | Cost | Sale | |
|---|---|---|---|---|---|---|---|
| {{ item.name }} | {{ item.sku or '—' }} | {{ item.category or '—' }} | {{ item.qty_on_hand }} | {{ item.reorder_level }} | {{ '$' ~ "%.2f"|format(item.cost_price) if item.cost_price else '—' }} | {{ '$' ~ "%.2f"|format(item.sale_price) if item.sale_price else '—' }} | Adjust Edit Log |
| No inventory items yet. | |||||||