From abc50d1041a4beeaed8423e0002c294222a891a4 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 27 May 2014 12:26:38 +0200 Subject: [PATCH] [IMP] application field doc --- openerp/addons/base/ir/ir_ui_view.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/openerp/addons/base/ir/ir_ui_view.py b/openerp/addons/base/ir/ir_ui_view.py index 6dff6abf4a4..56005958cf5 100644 --- a/openerp/addons/base/ir/ir_ui_view.py +++ b/openerp/addons/base/ir/ir_ui_view.py @@ -148,12 +148,16 @@ class view(osv.osv): required=True), 'application': fields.selection([ - ('always', "Always applied"), - ('enabled', "Optional, enabled"), - ('disabled', "Optional, disabled"), - ], required=True, string="If this view is inherited, whether it can be" - " toggled off, and whether it is currently" - " enabled"), + ('always', "Always applied"), + ('enabled', "Optional, enabled"), + ('disabled', "Optional, disabled"), + ], + required=True, string="Application status", + help="""If this view is inherited, +* if always, the view always extends its parent +* if enabled, the view currently extends its parent but can be disabled +* if disabled, the view currently does not extend its parent but can be enabled + """), } _defaults = { 'mode': 'primary',