{% extends "base.html" %} {% block title %}Inventur-Wizard{% endblock %} {% block heading %}📋 Inventur — Soll-Ist-Vergleich{% endblock %} {% block breadcrumb %}

Operativ / Inventur / Wizard

{% endblock %} {% block content %}

Pro Artikel die tatsächlich gezählte Menge eintragen → speichert direkt + zeigt Differenz.

{{ items|length }} Artikel — Erfassung

Artikel
Lagerort
Soll
Ist (eingeben)
Differenz
{% for it in items %}
{{ it.ident or '?' }} {% if it.description %}
{{ it.description[:40] }}
{% endif %}
{{ it.location or '—' }}
{{ it.quantity_total or 0 }}
—
{% else %}
Keine Artikel gefunden.
{% endfor %}
{% endblock %}