This commit is contained in:
Faheedkhan 2025-05-20 13:10:19 +03:00
parent fa89373030
commit 89fd86a7d6
2 changed files with 9 additions and 7 deletions

View File

@ -28,6 +28,7 @@ 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

View File

@ -11,14 +11,15 @@
<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"> <div class="table-responsive px-1 scrollbar mt-3">
<table class="table fs-9 mb-0 border-top border-translucent"> <table class="table align-items-center table-flush">
<thead> <thead>
<tr>
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Name" %}</th> <tr class="bg-body-highlight">
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Account Number" %}</th> <th class="border-top border-translucent ps-3">{% trans "Name" %}</th>
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Type" %}</th> <th class="border-top border-translucent ps-3">{% trans "Account Number" %}</th>
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Action" %}</th> <th class="border-top border-translucent">{% trans "Type" %}</th>
<th class="border-top border-translucent text-end">{% trans "Action" %}</th>
</tr> </tr>
</thead> </thead>
<tbody class="list"> <tbody class="list">