From 578312170618aefb1dd8e7afe423da9de29997af Mon Sep 17 00:00:00 2001 From: Nicolas Martinelli Date: Mon, 10 Sep 2018 13:56:35 +0200 Subject: [PATCH 1/2] Add link to Technical Training for Odoo 16.0 --- .gitignore | 0 README.md | 5 ++++- estate/__init__.py | 1 + estate/__manifest__.py | 11 +++++++++++ estate/models.py | 0 5 files changed, 16 insertions(+), 1 deletion(-) mode change 100644 => 100755 .gitignore create mode 100644 estate/__init__.py create mode 100644 estate/__manifest__.py create mode 100644 estate/models.py diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/README.md b/README.md index 2e6514bff10..29e1a840775 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ -# Odoo 12.0 - Technical Training +# Odoo 16.0 - Technical Training + +The Technical Training of Odoo 16.0 is available on the +[Tutorial](https://www.odoo.com/documentation/master/developer/howtos/rdtraining.html) diff --git a/estate/__init__.py b/estate/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/estate/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/estate/__manifest__.py b/estate/__manifest__.py new file mode 100644 index 00000000000..1f345fe6a75 --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,11 @@ +{ + "name": "Estate", # The name that will appear in the App list + "version": "16.0", # Version + "application": True, # This line says the module is an App, and not a module + "depends": ["base"], # dependencies + "data": [ + + ], + "installable": True, + 'license': 'LGPL-3', +} diff --git a/estate/models.py b/estate/models.py new file mode 100644 index 00000000000..e69de29bb2d From a7a1c145597f856a7a2e55f4b7ec0a8c662e43e2 Mon Sep 17 00:00:00 2001 From: Ignas Markauskas Date: Thu, 9 Nov 2023 16:48:31 +0200 Subject: [PATCH 2/2] test update --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 29e1a840775..f141a6d985f 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,6 @@ The Technical Training of Odoo 16.0 is available on the [Tutorial](https://www.odoo.com/documentation/master/developer/howtos/rdtraining.html) + + +Update. \ No newline at end of file