Move total time worked to 3rd column in ticket details

This commit is contained in:
johnnyq 2024-05-30 19:42:08 -04:00
parent eab3bf226c
commit 63f740e22f
1 changed files with 8 additions and 7 deletions

View File

@ -382,13 +382,6 @@ if (isset($_GET['ticket_id'])) {
</div>
<?php }
// Time tracking
if ($ticket_total_reply_time) { ?>
<div class="mt-1">
<i class="far fa-fw fa-clock text-secondary mr-2"></i>Total time worked: <?php echo $ticket_total_reply_time; ?>
</div>
<?php }
// Billable
if ($config_module_enable_accounting) { ?>
<?php if($invoice_id) { ?>
@ -422,6 +415,14 @@ if (isset($_GET['ticket_id'])) {
</div>
<?php } ?>
<?php
// Time tracking
if ($ticket_total_reply_time) { ?>
<div class="mt-1">
<i class="far fa-fw fa-clock text-secondary mr-2"></i>Total time worked: <?php echo $ticket_total_reply_time; ?>
</div>
<?php } ?>
<?php if ($ticket_collaborators) { ?>
<div class="mt-2">
<i class="fas fa-fw fa-users mr-2 text-secondary"></i><?php echo $ticket_collaborators; ?>