Added hosting report and enabled updating hosting details

This commit is contained in:
Deon George
2022-04-02 20:26:59 +11:00
parent edc06e51fb
commit 9659621ba0
11 changed files with 275 additions and 19 deletions

View File

@@ -19,7 +19,7 @@
<div class="col-12">
<div class="card card-dark">
<div class="card-body">
<table class="table table-hover" id="service_domain">
<table class="table table-hover" id="service_email">
<thead>
<tr>
<th>Service ID</tH>
@@ -71,7 +71,7 @@
</style>
<script type="text/javascript">
$(document).ready(function() {
$('#service_domain').DataTable({
$('#service_email').DataTable({
order: [[4,'asc'],[1,'asc'],[2,'desc']],
rowGroup: {
dataSrc: 4,
@@ -84,7 +84,7 @@
],
});
$('#invoices_due tbody').on('click','tr', function () {
$('tbody').on('click','tr', function () {
$(this).toggleClass('selected');
});
});