This commit is contained in:
Faheedkhan 2025-05-20 14:17:43 +03:00
parent e2499f1725
commit 76ecf45a88
2 changed files with 14 additions and 8 deletions

View File

@ -18,17 +18,17 @@
<tr class="bg-body-highlight">
<th class="border-top border-translucent ps-3">{% trans "Name" %}</th>
<th class="border-top border-translucent ps-3">{% trans "Account Number" %}</th>
<th class="border-top border-translucent">{% trans "Type" %}</th>
<th class="border-top border-translucent text-end">{% trans "Action" %}</th>
<th class="border-top border-translucent text-end pe-3">{% trans "Type" %}</th>
<th class="border-top border-translucent text-end pe-3" scope="col">{% trans "Action" %}</th>
</tr>
</thead>
<tbody class="list">
{% for bank in bank_accounts %}
<tr class="hover-actions-trigger btn-reveal-trigger position-static">
<td class="align-middle product white-space-nowrap">{{ bank.name }}</td>
<td class="align-middle product white-space-nowrap py-0">{{ bank.account_number }}</td>
<td class="align-middle product white-space-nowrap py-0">{{ bank.account_type|capfirst }}</td>
<td class="">
<td class="align-middle ps-3">{{ bank.name }}</td>
<td class="align-middle ps-3">{{ bank.account_number }}</td>
<td class="align-middle product text-end pe-3 ">{{ bank.account_type|capfirst }}</td>
<td class="align-middle product text-end pe-3 ">
<a href="{% url 'bank_account_update' bank.pk %}"
class="btn btn-sm btn-phoenix-success">
{% trans "Update" %}
@ -43,8 +43,14 @@
</tbody>
</table>
</div>
<div class="d-flex justify-content-center">
<div class="d-flex justify-content-center">
</div>
</div>
{% endblock %}

View File

@ -16,7 +16,7 @@
<div class="table-responsive px-1 scrollbar mt-3">
<table class="table fs-9 mb-0 border-top border-translucent">
<thead>
<tr>
<tr class="bg-body-highlight">
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Ledger Name" %}</th>
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Journal Entries" %}</th>
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Created Date" %}</th>