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.
 
 
 
 
 

20 lines
1012 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="view_hr_job_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="before">
<field name="image_1920" widget="image" class="oe_avatar"/>
</xpath>
<xpath expr="//button[@name='set_open']" position="after">
<button name="action_job_post" string="Share On Twitter"
type="object"
attrs="{'invisible':['|',('image_1920','=',False),('state','!=','recruit')]}"/>
</xpath>
</field>
</record>
</odoo>