mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-27 07:51:59 +02:00
24 lines
979 B
XML
24 lines
979 B
XML
<?xml version="1.0"?>
|
|
<odoo>
|
|
<record id="job_add_applicants_view_form" model="ir.ui.view">
|
|
<field name="name">job.add.applicants.view.form</field>
|
|
<field name="model">job.add.applicants</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Add Applicants to Pool">
|
|
<group>
|
|
<field name="job_ids" widget="many2many_tags" options="{'color_field': 'color'}" placeholder="Move to..."/>
|
|
</group>
|
|
<footer>
|
|
<button
|
|
name="action_add_applicants_to_job"
|
|
string="Create Applications"
|
|
type="object"
|
|
class="btn-primary"
|
|
data-hotkey="q"
|
|
/>
|
|
<button string="Discard" class="btn-secondary" special="cancel" data-hotkey="x"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|