29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">res.company.form.inherit.account</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='vat']" position="before">
|
|
<field name="bg_image" widget="image"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<template id="custom_bg_image" name="Frontend Layout Image" inherit_id="web.frontend_layout">
|
|
<xpath expr="//div[@id='wrapwrap']" position="attributes">
|
|
<attribute name="t-attf-style">#{"background: transparent url('/dashboard') no-repeat scroll center center / cover;" if response_template == 'web.login' or 'auth_signup.signup' else ''}</attribute>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="update_login_layout" name="Update Login Layout" inherit_id="web.login_layout">
|
|
<xpath expr="//div[@t-if='not disable_footer']" position="replace">
|
|
<div class="text-center small mt-4 pt-3 border-top" t-if="not disable_footer">
|
|
<a href="https://www.jikimo.com" target="_blank">Powered by <span>Jikimo</span></a>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
|
|
|
|
</odoo> |