{% extends "base.html" %} {% from "_macros.html" import app_pill, item_type_badge, money %} {% block title %}Artikel{% endblock %} {% block heading %}Artikel{% endblock %} {% block topbar_actions %} CSV-Export + Neuer Artikel {% endblock %} {% block content %}
Zurücksetzen

{{ items|length }} Artikel

Werkzeuge, Messmittel, Material — alles in einer Ansicht

{% if items %}
{% for it in items %} {% endfor %}
SKU Beschreibung Typ Bestand Min Verleih Lieferant Preis
{{ app_pill(it.source_app) }} {{ it.ident }}
{{ it.description }}
{{ item_type_badge(it.item_type) }} {% if it.quantity_total <= it.quantity_min and it.quantity_min > 0 %} {{ it.quantity_total }} {% else %} {{ it.quantity_total }} {% endif %} {{ it.quantity_min }} {% if it.active_rentals %}{{ it.active_rentals }}{% else %}—{% endif %} {{ it.vendor_name or '—' }} {{ money(it.price) }}
{% else %}
Keine Artikel gefunden — Filter zurücksetzen
{% endif %}
{% endblock %}