Tracker: fix ItemLinks items not being attributed to inventory

This commit is contained in:
Fabian Dill
2022-05-31 04:10:03 +02:00
committed by KonoTyran
parent 0045e3f9f7
commit e13e7f286c
2 changed files with 8 additions and 4 deletions

View File

@@ -25,9 +25,9 @@
</thead>
<tbody>
{% for name, count in inventory.items() %}
{% for id, count in inventory.items() %}
<tr>
<td>{{ name | item_name }}</td>
<td>{{ id | item_name }}</td>
<td>{{ count }}</td>
<td>{{received_items[name]}}</td>
</tr>