Merge pull request 'check' (#38) from frontend into main
Reviewed-on: #38
This commit is contained in:
commit
296c8a1404
@ -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 %}
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user