mirror of https://github.com/itflow-org/itflow
Removed Unnessary DIVs under invoice/quote/recurring notes
This commit is contained in:
parent
592041087c
commit
100286738e
|
|
@ -154,7 +154,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
|
|||
<thead class="<?php if($num_rows[0] == 0){ echo "d-none"; } ?>">
|
||||
<tr>
|
||||
<th><a class="text-dark" href="?<?php echo $url_query_strings_sortby; ?>&sortby=client_name&order=<?php echo $order_display; ?>">Name</a></th>
|
||||
<th><a class="text-dark" href="?<?php echo $url_query_strings_sortby; ?>&sortby=location_city&order=<?php echo $order_display; ?>">Address</a></th>
|
||||
<th><a class="text-dark" href="?<?php echo $url_query_strings_sortby; ?>&sortby=location_city&order=<?php echo $order_display; ?>">Address </a></th>
|
||||
<th><a class="text-dark" href="?<?php echo $url_query_strings_sortby; ?>&sortby=contact_name&order=<?php echo $order_display; ?>">Contact</a></th>
|
||||
<th class="text-right">Billing</th>
|
||||
<th class="text-center">Action</th>
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ if(isset($_GET['invoice_id'], $_GET['url_key'])){
|
|||
<div class="col-7">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div><?php echo $invoice_note; ?></div>
|
||||
<?php echo $invoice_note; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ if(isset($_GET['quote_id'], $_GET['url_key'])){
|
|||
<div class="col-7">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div><?php echo $quote_note; ?></div>
|
||||
<?php echo $quote_note; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ if(isset($_GET['invoice_id'])){
|
|||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div><?php echo $invoice_note; ?></div>
|
||||
<?php echo $invoice_note; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -299,7 +299,7 @@ if(isset($_GET['quote_id'])){
|
|||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div><?php echo $quote_note; ?></div>
|
||||
<?php echo $quote_note; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ if(isset($_GET['recurring_id'])){
|
|||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div><?php echo $recurring_note; ?></div>
|
||||
<?php echo $recurring_note; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ if(isset($_GET['ticket_id'])){
|
|||
|
||||
<div class="col-md-9">
|
||||
|
||||
<div class="card mb-3">
|
||||
<div class="card card-outline card-primary mb-3">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?php echo $ticket_subject; ?></h3>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue