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.

27 lines
933 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2017 LasLabs Inc.
  4. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  5. -->
  6. <odoo>
  7. <record id="darkroom_modal_view_form" model="ir.ui.view">
  8. <field name="name">Darkroom Modal Wizard</field>
  9. <field name="model">darkroom.modal</field>
  10. <field name="arch" type="xml">
  11. <form string="Darkroom Modal">
  12. <header />
  13. <sheet>
  14. <group name="data">
  15. <field name="image" widget="darkroom" nolabel="1"/>
  16. </group>
  17. </sheet>
  18. <footer>
  19. <button special="cancel" string="Cancel" class="pull-left"/>
  20. <button name="action_save" type="object" string="Save" class="oe_highlight pull-right"/>
  21. </footer>
  22. </form>
  23. </field>
  24. </record>
  25. </odoo>