You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
936 B

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <record id="view_technical_guide" model="ir.ui.view">
  5. <field name="name">tech.guide.rst.form</field>
  6. <field name="model">tech.guide.rst</field>
  7. <field name="type">form</field>
  8. <field name="arch" type="xml">
  9. <form string="Create Technical Guide in rst format">
  10. <separator string="Technical Guide in rst format" colspan="4"/>
  11. <label string="Please choose a file where the Technical Guide will be written." colspan="4"/>
  12. <field name="rst_file" />
  13. </form>
  14. </field>
  15. </record>
  16. <act_window id="wiz_tech_guide_rst"
  17. name="Create RST Technical Guide2"
  18. src_model="ir.module.module"
  19. res_model="tech.guide.rst"
  20. view_mode="form"
  21. view_id="view_technical_guide"
  22. target="new"
  23. key2="client_action_multi"/>
  24. </data>
  25. </openerp>