New column for generic tracker (#78)

* Adding order received column to generic tracker. Progressive items will have the most recent number only.
This commit is contained in:
Fluffyhairedguy
2021-09-23 07:48:25 -04:00
committed by GitHub
parent 67f324b939
commit 68a5784650
2 changed files with 7 additions and 2 deletions

View File

@@ -20,6 +20,7 @@
<tr>
<th>Item</th>
<th>Amount</th>
<th>Order Received</th>
</tr>
</thead>
<tbody>
@@ -28,6 +29,7 @@
<tr>
<td>{{ name | item_name }}</td>
<td>{{ count }}</td>
<td>{{received_items[name]}}</td>
</tr>
{%- endfor -%}