mirror of https://github.com/itflow-org/itflow
Feature: Color ticket rows yellow if Last Response was from a client This will let you know you need to be the next responder
This commit is contained in:
parent
79ea97410e
commit
534e02e2c7
|
|
@ -242,7 +242,7 @@ $total_scheduled_tickets = intval($row['total_scheduled_tickets']);
|
|||
|
||||
?>
|
||||
|
||||
<tr class="<?php if(empty($ticket_updated_at)) { echo "text-bold"; }?>">
|
||||
<tr class="<?php if(empty($ticket_updated_at)) { echo "text-bold"; }?> <?php if ($ticket_reply_type == "Client") { echo "table-warning"; } ?>">
|
||||
<td><a href="ticket.php?ticket_id=<?php echo $ticket_id; ?>"><span class="badge badge-pill badge-secondary p-3"><?php echo "$ticket_prefix$ticket_number"; ?></span></a></td>
|
||||
<td>
|
||||
<a href="ticket.php?ticket_id=<?php echo $ticket_id; ?>"><?php echo $ticket_subject; ?></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue