Compare commits
No commits in common. "e2499f1725314ac24f39fe85096338c695c1693e" and "7d8ea79cc9b8c52eacf7e44617345e7180f05d8c" have entirely different histories.
e2499f1725
...
7d8ea79cc9
@ -28,7 +28,6 @@ from django.contrib import messages
|
|||||||
from django.http import Http404, JsonResponse, HttpResponseForbidden
|
from django.http import Http404, JsonResponse, HttpResponseForbidden
|
||||||
from django.forms import HiddenInput, ValidationError
|
from django.forms import HiddenInput, ValidationError
|
||||||
from django.shortcuts import HttpResponse
|
from django.shortcuts import HttpResponse
|
||||||
|
|
||||||
from django.db.models import Sum, F, Count
|
from django.db.models import Sum, F, Count
|
||||||
from django.core.paginator import Paginator
|
from django.core.paginator import Paginator
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
|||||||
@ -11,15 +11,14 @@
|
|||||||
<a href="{% url 'bank_account_create' %}" class="btn btn-md btn-phoenix-primary"><i class="fa fa-plus me-2"></i>{% trans "Add Bank Account" %}</a>
|
<a href="{% url 'bank_account_create' %}" class="btn btn-md btn-phoenix-primary"><i class="fa fa-plus me-2"></i>{% trans "Add Bank Account" %}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="table-responsive px-1 scrollbar mt-3">
|
<div class="table-responsive px-1 scrollbar">
|
||||||
<table class="table align-items-center table-flush">
|
<table class="table fs-9 mb-0 border-top border-translucent">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<tr class="bg-body-highlight">
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Name" %}</th>
|
||||||
<th class="border-top border-translucent ps-3">{% trans "Name" %}</th>
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Account Number" %}</th>
|
||||||
<th class="border-top border-translucent ps-3">{% trans "Account Number" %}</th>
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Type" %}</th>
|
||||||
<th class="border-top border-translucent">{% trans "Type" %}</th>
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Action" %}</th>
|
||||||
<th class="border-top border-translucent text-end">{% trans "Action" %}</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="list">
|
<tbody class="list">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user