Small usability improvements

Replace README.md by README.rst (not finished)
This commit is contained in:
Alexis de Lattre
2016-10-04 22:30:16 +02:00
committed by Elmeri Niemelä
parent 67d5ac030f
commit 46f901bbb0
10 changed files with 130 additions and 57 deletions

View File

@@ -6,6 +6,10 @@ from openerp import fields, models
class Py3oServer(models.Model):
_name = 'py3o.server'
_rec_name = 'url'
url = fields.Char("URL", required=True)
url = fields.Char(
"Py3o Fusion Server URL", required=True,
help="If your Py3o Fusion server is on the same machine and runs "
"on the default port, the URL is http://localhost:8765/form")
is_active = fields.Boolean("Active", default=True)