feat(currencies): allow archiving

This commit is contained in:
Herculino Trotta
2025-08-29 22:47:00 -03:00
parent 4565dc770b
commit 1abe9e9f62
7 changed files with 50 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
<th scope="col" class="col-auto"></th>
<th scope="col" class="col-auto">{% translate 'Code' %}</th>
<th scope="col" class="col">{% translate 'Name' %}</th>
<th scope="col" class="col">{% translate 'Archived' %}</th>
</tr>
</thead>
<tbody>
@@ -53,6 +54,7 @@
</td>
<td class="col-auto">{{ currency.code }}</td>
<td class="col">{{ currency.name }}</td>
<td class="col">{% if currency.is_archived %}<i class="fa-solid fa-solid fa-check text-success"></i>{% endif %}</td>
</tr>
{% endfor %}
</tbody>