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",