Add of date in the counter/refilling_list view

This commit is contained in:
lsacienne 2022-04-19 12:02:22 +02:00
parent bc2fe16b74
commit 757ff7ead7
No known key found for this signature in database
GPG Key ID: 5B1939A93F7A6F48

View File

@ -13,6 +13,7 @@
<th>{% trans %}Amount{% endtrans %}</th>
<th>{% trans %}Payment method{% endtrans %}</th>
<th>{% trans %}Seller{% endtrans %}</th>
<th>{% trans %}Date{% endtrans %}
<th>{% trans %}Actions{% endtrans %}</th>
</tr>
{%- for refilling in object_list %}
@ -21,6 +22,7 @@
<td>{{ refilling.amount }}</td>
<td>{{ refilling.payment_method }}</td>
<td>{{ refilling.operator }}</td>
<td>{{ refilling.date }}</td>
<td><a href="{{ url('counter:refilling_delete', refilling_id=refilling.id)}}">Delete</a></td>
</tr>
{%- endfor %}