Added a column for Project in the tasklist.

This commit is contained in:
rocketdebris 2026-01-12 17:03:33 -05:00
parent 94e1c4dfed
commit 6853950cc5
2 changed files with 2 additions and 0 deletions

View file

@ -32,6 +32,7 @@ def get_job_task_table_data(filters={}, sortings={}, page=1, page_size=10):
tableRow = {}
tableRow["id"] = task["name"]
tableRow["subject"] = task["subject"]
tableRow["project"] = task["project"]
tableRow["address"] = task.get("custom_property", "")
tableRow["status"] = task.get("status", "")
tableRow["type"] = task.get("type", "")