Files
jon/jon/templates/inventory/index.html
T
2023-08-11 14:37:51 +02:00

35 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<table>
<tr>
<th>ID</th>
<th>Barcode</th>
<th>Name</th>
<th>Preis (Netto)</th>
<th>Kaufdatum</th>
<th>Gruppe</th>
<th>Eingekauft</th>
<th title="Korrekturen">Korr.</th>
<th>Inventar</th>
<th title="Anzahl aktiver Snackeinträge">#AS</th>
<th>Raum</th>
</tr>
{% for item in items %}
<tr>
<td><a href="/inventory/item/{{ item.item_id }}">{{ item.item_id }}</a></td>
<td><code>{{ item.item_barcode }}</code></td>
<td>{{ item.name }}</td>
<td class="--align-right">{{ format_currency(item.unit_price) }}</td>
<td>{{ format_date(item.bought) }}</td>
<td>{{ item.group_name }} ({{ item.item_group }})</td>
<td class="--align-right">{{ item.sales_units }}</td>
<td class="--align-right">{% if item.correction_delta > 0 %}+{% endif %}{{ item.correction_delta }}</td>
<td class="--align-right">{{ item.units_left }}</td>
<td class="--align-right">{{ item.active_mappings }}</td>
<td>{{ item.location_name }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}