Skip to content

Commit

Permalink
isactive added
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoroZoro95 committed Dec 25, 2024
1 parent 286d51c commit b7c4b22
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/organization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand Down

0 comments on commit b7c4b22

Please sign in to comment.