Make table striped

This commit is contained in:
o-psi 2024-01-10 21:15:12 +00:00
parent cf87a232c4
commit 6ca277a636
1 changed files with 19 additions and 17 deletions

View File

@ -9,25 +9,27 @@
</button>
</div>
<div class="modal-body bg-white">
<table class="table">
<tr>
<th>Ticket Number</th>
<th>Scope</th>
<th class="text-right">Add to Invoice</th>
</tr>
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
$ticket_id = intval($row['ticket_id']);
$ticket_subject = nullable_htmlentities($row['ticket_subject']);
?>
<div class="table-responsive">
<table class="table table-striped">
<tr>
<td><?php echo $ticket_id?></td>
<td><?php echo $ticket_subject ?></td>
<td></td>
<td><a href='ticket.php?ticket_id=<?php echo $ticket_id?>&invoice_id=<?php echo $invoice_id?>#addInvoiceFromTicketModal'>
<i class="fas fa-fw fa-plus-circle"></i></td>
<th>Ticket Number</th>
<th>Scope</th>
<th class="text-right">Add to Invoice</th>
</tr>
<?php } ?>
</table>
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
$ticket_id = intval($row['ticket_id']);
$ticket_subject = nullable_htmlentities($row['ticket_subject']);
?>
<tr>
<td><?php echo $ticket_id?></td>
<td><?php echo $ticket_subject ?></td>
<td></td>
<td><a href='ticket.php?ticket_id=<?php echo $ticket_id?>&invoice_id=<?php echo $invoice_id?>#addInvoiceFromTicketModal'>
<i class="fas fa-fw fa-plus-circle"></i></td>
</tr>
<?php } ?>
</table>
</div>
</div>
</div>
</div>