Adding some enhancements.

This commit is contained in:
Yaro Kasear 2025-09-11 10:47:44 -05:00
parent 013d1c0bd5
commit a8b07eb115
4 changed files with 24 additions and 9 deletions

View file

@ -20,8 +20,7 @@ def init_index_routes(app):
"complete__ne": 1,
"fields": [
"start_time",
"contact.last_name",
"contact.first_name",
"contact.label",
"work_item.label",
"work_item.device_type.description"
],
@ -30,7 +29,7 @@ def init_index_routes(app):
columns = [
{"field": "start_time", "label": "Start", "format": "date"},
{"field": "contact.last_name", "label": "Contact",
{"field": "contact.label", "label": "Contact",
"link": {"endpoint": "user.get_item", "params": {"id": "{contact.id}"}}},
{"field": "work_item.label", "label": "Work Item",
"link": {"endpoint": "inventory.get_item", "params": {"id": "{work_item.id}"}}},