documentation/content/developer/tutorials/master_odoo_web_framework.rst
Géry Debongnie 6d1171af9f [IMP] developer/tutorials: separate js framework tutorial in two parts
This commit splits the 7 chapters of the JS tutorial in two
smaller and more focused tutorials:
- a basic one (Discover the JS framework)
- and an advanced one (Master the odoo web framework)

closes odoo/documentation#4247

X-original-commit: b6b9de70d2
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-25 10:22:49 +02:00

43 lines
1.6 KiB
ReStructuredText

:show-content:
=============================
Master the Odoo Web Framework
=============================
.. toctree::
:titlesonly:
:glob:
master_odoo_web_framework/*
This tutorial is designed for those who have completed the :doc:`discover_js_framework` tutorial and
are looking to deepen their knowledge of the Odoo web framework.
For this training, we will step into the shoes of the IT staff at the fictional company Awesome
T-Shirt, which is dedicated to printing custom t-shirts for online customers. The Awesome T-Shirt
company uses Odoo to manage orders and has created a dedicated Odoo module to manage their workflow.
In this tutorial, we will explore various aspects of the Odoo web framework in detail, including
fields and views, notifications, command palette, and much more. This tutorial will provide you with
the knowledge and skills you need to take full advantage of the Odoo web framework. So, let's get
started!
.. _howtos/master_odoo_web_framework/setup:
Setup
=====
#. Clone the `official Odoo tutorials repository <https://github.com/odoo/tutorials>`_ and switch to
the branch `{BRANCH}`.
#. Add the cloned repository to the :option:`--addons-path <odoo-bin --addons-path>`.
#. Start a new Odoo database and install the modules `awesome_tshirt` and `awesome_gallery`.
Content
=======
- :doc:`master_odoo_web_framework/01_fields_and_views`
- :doc:`master_odoo_web_framework/02_miscellaneous`
- :doc:`master_odoo_web_framework/03_custom_kanban_view`
- :doc:`master_odoo_web_framework/04_creating_view_from_scratch`
- :doc:`master_odoo_web_framework/05_testing`