From b7c4b222bb1f226d23693e873566429a256bdd98 Mon Sep 17 00:00:00 2001 From: ZoroZoro95 Date: Wed, 25 Dec 2024 20:25:23 +0530 Subject: [PATCH] isactive added --- backend/organization/utils.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/organization/utils.py b/backend/organization/utils.py index b523305b..06c277ec 100644 --- a/backend/organization/utils.py +++ b/backend/organization/utils.py @@ -434,7 +434,7 @@ def get_org_report_tasks( pass elif "VoiceOver" in task.get_task_type_label: word_count = "-" - + is_active = task.is_active tasks_list.append( { "task_id": { @@ -452,6 +452,11 @@ def get_org_report_tasks( "label": "Video Name", "viewColumns": False, }, + "is_active": { + "value": str(is_active), + "label": "Is Active", + "viewColumns": False, + }, "video_url": { "value": task.video.url, "label": "Video URL",