Initial migration from AdminLTE 3 to 4, bootstrap 4 to 5

This commit is contained in:
johnnyq
2026-08-14 13:22:11 -04:00
parent 691059aab2
commit a084e37c39
458 changed files with 6069 additions and 8634 deletions

View File

@@ -41,9 +41,9 @@ $sql_vendor_expenses = mysqli_query($mysqli, "
<div class="card card-dark">
<div class="card-header py-2">
<h3 class="card-title mt-2"><i class="fas fa-fw fa-building mr-2"></i>Expense By Vendor <small>(With expense amounts of 600 or more)</small></h3>
<h3 class="card-title mt-2"><i class="fas fa-fw fa-building me-2"></i>Expense By Vendor <small>(With expense amounts of 600 or more)</small></h3>
<div class="card-tools">
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print mr-2"></i>Print</button>
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print me-2"></i>Print</button>
</div>
</div>
<div class="card-body">
@@ -69,7 +69,7 @@ $sql_vendor_expenses = mysqli_query($mysqli, "
<thead>
<tr>
<th>Vendor</th>
<th class="text-right">Paid</th>
<th class="text-end">Paid</th>
</tr>
</thead>
<tbody>
@@ -81,7 +81,7 @@ $sql_vendor_expenses = mysqli_query($mysqli, "
<tr>
<td><?= $vendor_name ?></td>
<td class="text-right"><?= numfmt_format_currency($currency_format, $amount_paid, $session_company_currency) ?></td>
<td class="text-end"><?= numfmt_format_currency($currency_format, $amount_paid, $session_company_currency) ?></td>
</tr>
<?php
}