From 4350a31631e62d36e28995407bb5c3c1fcafed43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com> Date: Wed, 26 Apr 2023 14:03:57 +0900 Subject: [PATCH] core: "better" default columns in Base_viewRelatedObjectListBase ID is not something we like to show to users, modification date and validation state can be better - this assumes that most of the relation are made to nodes, which typically have a validation state and not a simulation state. --- .../Base_viewRelatedObjectListBase/listbox.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_viewRelatedObjectListBase/listbox.xml b/product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_viewRelatedObjectListBase/listbox.xml index 45fe49d119..318468f4dd 100644 --- a/product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_viewRelatedObjectListBase/listbox.xml +++ b/product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_viewRelatedObjectListBase/listbox.xml @@ -120,10 +120,6 @@ <key> <string>columns</string> </key> <value> <list> - <tuple> - <string>id</string> - <string>ID</string> - </tuple> <tuple> <string>title</string> <string>Title</string> @@ -132,10 +128,18 @@ <string>description</string> <string>Description</string> </tuple> + <tuple> + <string>translated_validation_state_title</string> + <string>State</string> + </tuple> <tuple> <string>translated_portal_type</string> <string>Type</string> </tuple> + <tuple> + <string>modification_date</string> + <string>Modification Date</string> + </tuple> </list> </value> </item> -- 2.30.9