{% extends "base.html" %} {% block title %}Inventory — open-inventory{% endblock %} {% block content %}

Inventory

Current on-hand by item and location. Export items CSV · Export movements CSV

{% if rows %}
{% for row in rows %} {% endfor %}
Location GTIN Name Brand On hand Last movement
{{ row.location_name }} {{ row.gtin }} {{ row.name or "—" }} {% if row.needs_review %} needs review {% endif %} {{ row.brand or "—" }} {{ row.on_hand }} {% if row.last_movement_at %} {{ row.last_movement_at }} {% else %} — {% endif %} Enrich
{% else %}

No inventory yet. Scan some items to get started.

{% endif %}
{% endblock %}