{% extends "base.html" %} {% from "_macros.html" import app_pill %} {% block title %}Lagerorte{% endblock %} {% block heading %}Lagerorte{% endblock %} {% block topbar_actions %} + Neuer Lagerort {% endblock %} {% block content %}

{{ total if total is defined else locations|length }} Lagerorte

Schubladen, Regale, Behälter — über beide Systeme hinweg{% if total_pages and total_pages > 1 %} · Seite {{ page }} von {{ total_pages }}{% endif %}

{% if q %}×{% endif %}
{% if locations %} {% for l in locations %} {% endfor %}
Code Größe Kapazität Gruppe Artikel Bestand Status
{{ app_pill(l.source_app) }} {{ l.code }} {{ l.size or '—' }} {{ l.capacity or '—' }} {{ l.group_name or '—' }} {{ l.item_count or 0 }} {{ l.total_qty or 0 }} {% if l.is_used %}In Nutzung{% else %}Frei{% endif %} Bearbeiten
{% if total_pages and total_pages > 1 %} {% endif %} {% else %}
{% if q %}Keine Lagerorte gefunden für „{{ q }}".{% else %}Keine Lagerorte vorhanden.{% endif %}
{% endif %}
{% endblock %}