tables
This commit is contained in:
parent
fa89373030
commit
89fd86a7d6
@ -28,6 +28,7 @@ from django.contrib import messages
|
||||
from django.http import Http404, JsonResponse, HttpResponseForbidden
|
||||
from django.forms import HiddenInput, ValidationError
|
||||
from django.shortcuts import HttpResponse
|
||||
|
||||
from django.db.models import Sum, F, Count
|
||||
from django.core.paginator import Paginator
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
@ -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>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive px-1 scrollbar">
|
||||
<table class="table fs-9 mb-0 border-top border-translucent">
|
||||
<div class="table-responsive px-1 scrollbar mt-3">
|
||||
<table class="table align-items-center table-flush">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Name" %}</th>
|
||||
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Account Number" %}</th>
|
||||
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Type" %}</th>
|
||||
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Action" %}</th>
|
||||
|
||||
<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>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="list">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user