diff --git a/content/developer/tutorials/server_framework_101/09_actions.rst b/content/developer/tutorials/server_framework_101/09_actions.rst index 9fc86d913bb..9ada114efbe 100644 --- a/content/developer/tutorials/server_framework_101/09_actions.rst +++ b/content/developer/tutorials/server_framework_101/09_actions.rst @@ -1,6 +1,6 @@ -================================== +================================= Chapter 9: Ready For Some Action? -================================== +================================= So far we have mostly built our module by declaring fields and views. We just introduced business logic in the :doc:`previous chapter <08_compute_onchange>` thanks to @@ -93,7 +93,7 @@ Finally, a public method should always return something so that it can be called When in doubt, just ``return True``. There are hundreds of examples in the Odoo source code. One example is this -`button in a view `__ +`button in a view `__ and its `corresponding Python method `__