2026-01-09 21:30:49 +05:30

15 lines
633 B
XML

<odoo>
<data>
<!--
Override the Shared Brand Placeholder
Using a generic selector '//span' because strict field matching failed.
This template typically contains a single span or img for the logo.
-->
<template id="custom_website_logo_placeholder" inherit_id="website.placeholder_header_brand" name="Custom Website Logo Placeholder">
<xpath expr="//span" position="replace">
<img src="/web/binary/company_logo" t-att-alt="website.name" class="img-fluid" style="height: 3rem;"/>
</xpath>
</template>
</data>
</odoo>