Skip to content

Commit bee08e9

Browse files
nim-odoosts-odoo
authored andcommitted
Add link to Technical Training for Odoo 16.0
1 parent 08ce5cf commit bee08e9

File tree

5 files changed

+16
-1
lines changed

5 files changed

+16
-1
lines changed

.gitignore

100644100755
File mode changed.

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# Odoo 12.0 - Technical Training
1+
# Odoo 16.0 - Technical Training
2+
3+
The Technical Training of Odoo 16.0 is available on the
4+
[Tutorial](https://www.odoo.com/documentation/master/developer/howtos/rdtraining.html)

estate/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

estate/__manifest__.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Estate", # The name that will appear in the App list
3+
"version": "16.0.0", # Version
4+
"application": True, # This line says the module is an App, and not a module
5+
"depends": ["base"], # dependencies
6+
"data": [
7+
8+
],
9+
"installable": True,
10+
'license': 'LGPL-3',
11+
}

estate/models.py

Whitespace-only changes.

0 commit comments

Comments
 (0)