From f0bf3ace746737b14f6fefb98e8d6af8c7d85725 Mon Sep 17 00:00:00 2001 From: Horilla Date: Mon, 20 Oct 2025 11:31:44 +0530 Subject: [PATCH] [UPDT] PROJECT: Updated timesheet detail view discription col width and status display in list view --- project/cbv/timesheet.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/project/cbv/timesheet.py b/project/cbv/timesheet.py index 3c689a1bc..4773c0e63 100644 --- a/project/cbv/timesheet.py +++ b/project/cbv/timesheet.py @@ -157,7 +157,7 @@ class TimeSheetList(HorillaListView): "task_id", "date", "time_spent", - "status", + (_("Status"), "get_status_display"), (_("Description"), "get_description_col"), ] @@ -504,3 +504,7 @@ class TimeSheetDetailView(HorillaDetailedView): (get_field("status").verbose_name, "get_status_display"), (get_field("description").verbose_name, "description"), ] + + cols = { + "description": 12, + }