Coworking/coworking_event/wizard/coworking_event_weekly_view...

47 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Form -->
<record id="view_form_weekly_event" model="ir.ui.view">
<field name="name">Event Weekly Form</field>
<field name="model">coworking.event.weekly</field>
<field name="arch" type="xml">
<form string="event">
<sheet>
<group>
<field name="title" />
<field name="manager_id" />
<field name="date_start_recurence" />
<field name="date_stop_recurence" />
<field name="duration" widget="float_time" />
</group>
</sheet>
<footer>
<button type="object" name="weekly_create" string="Create"
class="oe_highlight" />
<button string="Close" special="cancel" />
</footer>
</form>
</field>
</record>
<!-- Action -->
<!-- <record id="weekly_event_action" model="ir.actions.act_window">
<field name="name">Weekly event</field>
<field name="res_model">coworking.event.weekly</field>
<field name="view_mode">form</field>
<field name="view_id" ref="coworking_event.view_form_weekly_event" />
<field name="target">new</field>
</record> -->
<act_window id="weekly_event_action" name="Weekly event"
res_model="coworking.event.weekly" view_mode="form"
target="new" />
<!-- Menu -->
<menuitem id="weekly_event_menu" name="Weekly events" action="weekly_event_action"
parent="event_topmenu" sequence="5" />
</odoo>