feat: Added price updating

This commit is contained in:
2026-04-20 13:44:39 +01:00
parent d292791614
commit 2c89ab5e62
4 changed files with 51 additions and 4 deletions

View File

@@ -19,6 +19,7 @@
<th>Drink</th>
<th>User</th>
<th>Qty</th>
<th>Value</th>
<th>Time</th>
</tr>
</thead>
@@ -28,6 +29,7 @@
<td>{{ t.drink_name }}</td>
<td>{{ t.user_name }}</td>
<td>{{ t.quantity }}</td>
<td>{{ "%.2f"|format(t.cost) }}€</td>
<td class="muted">
{{ t.timestamp.strftime("%Y-%m-%d %H:%M") }}
</td>