event_track_location_views.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0"?>
  2. <odoo>
  3. <!-- EVENTS/CONFIGURATION/EVENT locations -->
  4. <record model="ir.ui.view" id="view_event_location_form">
  5. <field name="name">Event Locations</field>
  6. <field name="model">event.track.location</field>
  7. <field name="arch" type="xml">
  8. <form string="Event Locations">
  9. <sheet>
  10. <group>
  11. <field name="name"/>
  12. <field name="sequence"/>
  13. </group>
  14. </sheet>
  15. </form>
  16. </field>
  17. </record>
  18. <record model="ir.ui.view" id="view_event_location_tree">
  19. <field name="name">Event Location</field>
  20. <field name="model">event.track.location</field>
  21. <field name="arch" type="xml">
  22. <tree string="Event Location" editable="bottom">
  23. <field name="sequence" widget="handle"/>
  24. <field name="name"/>
  25. </tree>
  26. </field>
  27. </record>
  28. <record model="ir.actions.act_window" id="action_event_track_location">
  29. <field name="name">Event Locations</field>
  30. <field name="res_model">event.track.location</field>
  31. <field name="help" type="html">
  32. <p class="o_view_nocontent_smiling_face">
  33. Create a Track Location
  34. </p><p>
  35. Manage from here the places where you organize your tracks (e.g. Rooms, Channels, ...).
  36. </p>
  37. </field>
  38. </record>
  39. </odoo>