{% extends "base.html" %} {% from "_macros.html" import app_pill, action_badge, avatar %} {% block title %}Historie{% endblock %} {% block heading %}Historie{% endblock %} {% block topbar_actions %} {{ entries|length }} Vorgänge CSV-Export {% endblock %} {% block content %}
{% for h in entries %} {% else %} {% endfor %}
Wann Aktion Mitarbeiter Artikel Menge
{{ h.created_at }} {{ action_badge(h.action_code, h.action_name) }} {% if h.first_name %}
{{ avatar(h.first_name, h.last_name) }} {{ h.first_name }} {{ h.last_name }}
{% else %} {% endif %}
{% if h.item_ident %}{{ h.item_ident }}{% else %}{% endif %} {% if h.source_app %}{{ app_pill(h.source_app) }}{% endif %} {{ h.quantity if h.quantity else '—' }}
Keine Einträge.
{% endblock %}