Better Layout

bzr revid: fp@tinyerp.com-7d6e86e18f23344fa30834da0104c8a10e299571
This commit is contained in:
Fabien Pinckaers 2008-07-09 05:56:06 +00:00
parent 56b726f56d
commit 4bf0b7a8b5
2 changed files with 8 additions and 10 deletions

View File

@ -570,7 +570,6 @@ module_dependency()
class module_config_wizard_step(osv.osv):
_name = 'ir.module.module.configuration.step'
_columns={
'name':fields.char('Name',size=64,required=True, select=True),
'note':fields.text('Text'),

View File

@ -226,15 +226,14 @@
<field name="model">ir.module.module.configuration.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Next Configuration Step" width="400">
<separator string="Next Configuration Step" colspan="4" width="400"/>
<newline/>
<field name="name" nolabel="1" colspan="4"/>
<separator colspan="4" string=""/>
<group colspan="2">
<button colspan="1" icon="gtk-cancel" special="cancel" string="Cancel"/>
<!--<button name="button_skip" type='object' string="Skip" icon="gtk-ok"/>-->
<button icon="gtk-go-forward" name="button_continue" size="1" string="Continue" type="object"/>
<form string="Next Configuration Step">
<separator string="Next Configuration Step" colspan="4"/>
<field name="name" nolabel="1" colspan="4" width="500"/>
<separator colspan="4" string=""/>
<label string="" colspan="2"/>
<group colspan="2" col="2">
<button icon="gtk-cancel" special="cancel" string="Cancel"/>
<button icon="gtk-go-forward" name="button_continue" string="Continue" type="object"/>
</group>
</form>
</field>