mirror of https://github.com/itflow-org/itflow
Fixed Income Summary December column being off by 1 because of the TH Padding on the total column
This commit is contained in:
parent
a2bd898eec
commit
1e21cb9768
|
|
@ -36,7 +36,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
|
|||
</form>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped">
|
||||
<thead class="text-dark">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Category</th>
|
||||
<th class="text-right">January</th>
|
||||
|
|
@ -91,7 +91,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
|
|||
|
||||
?>
|
||||
|
||||
<th class="text-right">$<?php echo number_format($total_payment_for_all_months,2); ?></th>
|
||||
<td class="text-right text-bold">$<?php echo number_format($total_payment_for_all_months,2); ?></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
|
|
@ -122,7 +122,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
|
|||
|
||||
?>
|
||||
|
||||
<th class="text-right">$<?php echo number_format($payment_total_amount_for_month,2); ?></th>
|
||||
<th class="text-right">$<?php echo number_format($payment_total_amount_for_month,2); ?></th>
|
||||
<?php
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue