From e241c7a0880f656f94fdb721e95fc3db00796113 Mon Sep 17 00:00:00 2001 From: sk-nada <195825125+sk-nada@users.noreply.github.com> Date: Mon, 27 Jan 2025 07:58:48 +0000 Subject: [PATCH] [FIX] tutorials/server_framework_101: update link for example of list previous link was for code that used tree in xml. The tree tag throws Traceback error in 18.0. This commit will provide the correct example with list tag instead of tree tag. closes odoo/documentation#11865 Signed-off-by: Antoine Vandevenne (anv) --- .../developer/tutorials/server_framework_101/06_basicviews.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developer/tutorials/server_framework_101/06_basicviews.rst b/content/developer/tutorials/server_framework_101/06_basicviews.rst index 8fe4d7fd4..f7f027b08 100644 --- a/content/developer/tutorials/server_framework_101/06_basicviews.rst +++ b/content/developer/tutorials/server_framework_101/06_basicviews.rst @@ -44,7 +44,7 @@ lists all the fields to display in the table (where each field is a column): A simple example can be found -`here `__. +`here `__. .. exercise:: Add a custom list view.