From 48055798821a1961f2bd596fb3bb3d2278cf9d8e Mon Sep 17 00:00:00 2001 From: sk-nada <195825125+sk-nada@users.noreply.github.com> Date: Mon, 27 Jan 2025 21:40:03 +0000 Subject: [PATCH] [FW][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#11866 Forward-port-of: 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.