reporting-engine/report_layout_config/views/document_layout.xml

23 lines
922 B
XML
Raw Normal View History

2024-10-01 05:53:56 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<flectra>
<record id="base_document_layout" model="ir.ui.view">
<field name="name">base.document.layout</field>
<field name="model">base.document.layout</field>
<field name="inherit_id" ref="web.view_base_document_layout" />
<field name="arch" type="xml">
<xpath expr="//field[@name='logo']" position="after">
<field name="full_header_img" widget="image" class="mb-4" />
<field name="full_footer_img" widget="image" class="mb-4" />
</xpath>
<field name="preview" position="attributes">
<attribute name='style'>
max-width: 450px;
display: flex;
align-items: center;
justify-content: center;
</attribute>
</field>
</field>
</record>
</flectra>