{% extends "base.html" %} {% block title %}Inventory Twin{% endblock %} {% block page_title %}Inventory Twin{% endblock %} {% block content %}
{{ total_db_items }}
Total SKUs
{{ total_quantity }}
Total Units
{{ low_stock_count }}
Low Stock
{{ overstock_count }}
Overstock
{% if total_db_items > 0 %} {{ total_stock_value | format_currency }} {% else %} {{ 0 | format_currency }} {% endif %}
Stock Value
CSV Template Excel Template Export Excel Export PDF
Inventory Items
{{ total_db_items }} SKUs {{ low_stock_count }} Low Stock
{% if total_db_items == 0 %}

No inventory items in database yet.

{% else %}
{% for item in items %} {% endfor %}
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 }}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}