OCA reporting engine fork for dev and update.
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.

41 lines
1.6 KiB

10 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="py3o_template_configuration_form_view" model="ir.ui.view">
  5. <field name="name">py3o.template.configuration.form.view</field>
  6. <field name="model">py3o.template</field>
  7. <field name="arch" type="xml">
  8. <form string="Py3o Templates Configuration" version="7.0">
  9. <sheet>
  10. <group>
  11. <field name="name" />
  12. <field name="py3o_template_data" />
  13. </group>
  14. </sheet>
  15. </form>
  16. </field>
  17. </record>
  18. <record id="py3o_template_configuration_tree_view" model="ir.ui.view">
  19. <field name="name">py3o.template.configuration.tree.view</field>
  20. <field name="model">py3o.template</field>
  21. <field name="arch" type="xml">
  22. <tree string="Py3o Templates Configuration" version="7.0">
  23. <field name="name" />
  24. </tree>
  25. </field>
  26. </record>
  27. <record id="py3o_template_configuration_action" model="ir.actions.act_window">
  28. <field name="name">Py3o Templates Configuration</field>
  29. <field name="res_model">py3o.template</field>
  30. <field name="view_type">form</field>
  31. <field name="view_mode">tree,form</field>
  32. </record>
  33. <menuitem id="py3o_template_configuration_menu"
  34. name="Py3o Templates"
  35. parent="py3o_config_menu"
  36. action="py3o_template_configuration_action" />
  37. </data>
  38. </openerp>