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.
|
- <?xml version="1.0" encoding="utf-8" ?>
- <!--
- Copyright (C) 2016-Today: Odoo Community Association (OCA)
- @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
- License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
- -->
- <odoo>
- <record id="view_wizard_create_team_form" model="ir.ui.view">
- <field name="model">wizard.create.team</field>
- <field name="arch" type="xml">
- <form>
- <group col="4">
- <field name="organization_id" colspan="4" />
- <field name="name" />
- <field name="privacy" />
- <field name="description" colspan="4" />
- <field
- name="wizard_partner_ids"
- colspan="4"
- widget="many2many_tags"
- />
- <field
- name="wizard_repository_ids"
- colspan="4"
- widget="many2many_tags"
- />
- </group>
- <footer>
- <button
- name="button_create_in_github"
- string="Create in Github"
- type="object"
- class="oe_highlight"
- />
- or
- <button string="Cancel" class="oe_link" special="cancel" />
- </footer>
- </form>
- </field>
- </record>
- </odoo>
|