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.
 
 
 
 
 

21 lines
947 B

<?xml version="1.0" encoding="utf-8"?>
<!-- This XML code defines a new view that adds an avatar image and a "Share On Twitter" button to the job form view in Odoo. -->
<odoo>
<record id="hr_job_view_form" model="ir.ui.view">
<field name="name">hr.job.view.form.inherit.recruitment.twitter</field>
<field name="model">hr.job</field>
<field name="priority" eval="15"/>
<field name="inherit_id" ref="hr.view_hr_job_form"/>
<field name="arch" type="xml">
<xpath expr="//div[hasclass('oe_title')]" position="after">
<field name="attachment_ids" widget="many2many_binary"/>
</xpath>
<xpath expr="//sheet" position="before">
<header>
<button name="action_job_post" string="Share On Twitter"
type="object"/>
</header>
</xpath>
</field>
</record>
</odoo>