From bf1d0655c4bef697b7fa95896d502f86abdba5fc Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 28 Jan 2026 22:52:56 -0500 Subject: [PATCH] Update Ticket list ui smaller badge for ticket and smaller task progress bar and more natural dates --- agent/ticket.php | 44 +++++++++++++++---------------- agent/ticket_list.php | 10 +++---- agent/tickets.php | 30 +++++++++------------ includes/load_global_settings.php | 4 +-- 4 files changed, 41 insertions(+), 47 deletions(-) diff --git a/agent/ticket.php b/agent/ticket.php index 44b09c82..30fdcd01 100644 --- a/agent/ticket.php +++ b/agent/ticket.php @@ -439,13 +439,13 @@ if (isset($_GET['ticket_id'])) {
- Last updated: ($ticket_updated_at_ago)" ?> + Updated: ($ticket_updated_at_ago)" ?>
- Assigned Agent: + Agent:
@@ -565,9 +565,9 @@ if (isset($_GET['ticket_id'])) { -
+
-
+
-
+
- -
- -
-
-
+
+
+
+
+
- -
-
+ +
+
+
@@ -639,14 +639,14 @@ if (isset($_GET['ticket_id'])) {
- -
-
- -
-
-
+ +
+
+ +
+
+
diff --git a/agent/ticket_list.php b/agent/ticket_list.php index caf022b0..38f43d60 100644 --- a/agent/ticket_list.php +++ b/agent/ticket_list.php @@ -125,9 +125,9 @@ $ticket_assigned_to = intval($row['ticket_assigned_to']); if (empty($ticket_assigned_to)) { if (!empty($ticket_closed_at)) { - $ticket_assigned_to_display = "

Not Assigned

"; + $ticket_assigned_to_display = "

Unassigned

"; } else { - $ticket_assigned_to_display = "

Not Assigned

"; + $ticket_assigned_to_display = "

Unassigned

"; } } else { $ticket_assigned_to_display = nullable_htmlentities($row['user_name']); @@ -203,7 +203,7 @@ "> - + @@ -212,12 +212,12 @@
"> 0) { ?> -
+
-
+

diff --git a/agent/tickets.php b/agent/tickets.php index da70cae0..9de95b8f 100644 --- a/agent/tickets.php +++ b/agent/tickets.php @@ -214,26 +214,20 @@ $sql_categories_filter = mysqli_query(
-
-
- -
- + - - - + + + - - -
+
diff --git a/includes/load_global_settings.php b/includes/load_global_settings.php index cd368476..25b8208f 100644 --- a/includes/load_global_settings.php +++ b/includes/load_global_settings.php @@ -117,8 +117,8 @@ $config_log_retention = intval($row['config_log_retention']); // Locale $config_currency_format = "US_en"; $config_timezone = $row['config_timezone']; -$config_date_format = "Y-m-d"; -$config_time_format = "H:i"; +$config_date_format = "M d, Y"; +$config_time_format = "g:i A"; // Theme $config_theme = $row['config_theme'];