fix: add list template to all portal doctypes

This commit is contained in:
sokumon
2025-12-15 02:12:08 +05:30
parent 88acf05ba2
commit 9486d0d462
12 changed files with 25 additions and 6 deletions

View File

@@ -447,6 +447,7 @@ def get_list_context(context=None):
"title": _("Projects"),
"get_list": get_project_list,
"row_template": "templates/includes/projects/project_row.html",
"list_template": "templates/includes/list/list.html",
}
)

View File

@@ -559,4 +559,5 @@ def get_list_context(context=None):
"title": _("Timesheets"),
"get_list": get_timesheets_list,
"row_template": "templates/includes/timesheet/timesheet_row.html",
"list_template": "templates/includes/list/list.html",
}