{% extends "base.html" %} {% block title %}All items — Inventory Lookup{% endblock %} {% block content %}

All items

{% if items %}

{{ total_items }} items in stock list · {{ low_stock }} at or below 10 units

{% set rows = items %} {% include "_items_table.html" %} {% else %}

No inventory file yet. Stop the server with Ctrl + C, run python generate_data.py, then start it again with python app.py.

{% endif %}
{% endblock %}