8000 [FIX] README.md: Fixing typos · odoo-dev/tutorials@09eadc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 09eadc2

Browse files
FlorianGilbertgato-odoo
authored andcommitted
[FIX] README.md: Fixing typos
There are 2 typos in the README.md that lead to broken links. closes odoo#196 X-original-commit: 460af3f Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
1 parent 4f1d255 commit 09eadc2

File tree

7 files changed

+35
-2
lines changed

7 files changed

+35
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Odoo tutorials
22

33
This repository hosts the code for the bases of the modules used in the
4-
[official Odoo tutorials](https://www.odoo.com/documentation/lastest/developer/tutorials.html).
4+
[official Odoo tutorials](https://www.odoo.com/documentation/latest/developer/tutorials.html).
55

66
It has 3 branches for each Odoo version: one for the bases, one for the
77
[Discover the JS framework](https://www.odoo.com/documentation/latest/developer/tutorials/discover_js_framework.html)
88
tutorial's solutions, and one for the
9-
[Master the Odoo web framework](https://www.odoo.com/documentation/lastest/developer/tutorials/master_odoo_web_framework.html)
9+
[Master the Odoo web framework](https://www.odoo.com/documentation/latest/developer/tutorials/master_odoo_web_framework.html)
1010
tutorial's solutions. For example, `17.0`, `17.0-discover-js-framework-solutions` and
1111
`17.0-master-odoo-web-framework-solutions`.

realestatinator/.__manifest__.py.swp

12 KB
Binary file not shown.

realestatinator/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from . import models

realestatinator/__manifest__.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# -*- coding: utf-8 -*-
2+
3+
{
4+
'name': 'real-estate-inator',
5+
'description': 'Inator that helps you find real estate.',
6+
'category': 'Tutorials/RealEstateInator',
7+
'author': 'Prout!',
8+
'depends': [
9+
'base',
10+
'web',
11+
],
12+
'installable': True,
13+
'application': True,
14+
'auto_install': False,
15+
'version': '0.1',
16+
17+
}
Binary file not shown.

realestatinator/models/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from . import estate_property
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from odoo import fields, models
2+
3+
class EstatePropery(models.Model):
4+
_name = 'estate_property'
5+
_description = 'real estate property'
6+
_order = 'sequence'
7+
8+
sequence = fields.Integer('Sequence', default=0)
9+
name = fields.Char('Name', required=True, translate=True)
10+

0 commit comments

Comments
 (0)
0