From 8800de73af2fae3e93edffa96089fa1f3da376b6 Mon Sep 17 00:00:00 2001 From: sk-nada <195825125+sk-nada@users.noreply.github.com> Date: Tue, 28 Jan 2025 02:59:51 +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#11867 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 8fe4d7fd45..f7f027b080 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.