Skip to Content
Menu
This question has been flagged
2 Replies
1351 Views

src="/module_name/static/description/image.png" does not seem to work on image tags in my xml template. I'm on odoo16.

Avatar
Discard
Author Best Answer

I added class="article" to the top div element and suddenly the report came to life. My images displayed, the font was set etc I don't know what it does but it worked for me. Thanks for the help anyways

Avatar
Discard
Best Answer

Hi,
Refer to the below code

<template id="your_template_id" inherit_id="your_inherited_template_id" name="Your Template Name">
    <!-- Add the web directive to reference static assets -->
    <xpath expr="//img/@src" position="replace">
<attribute name="t-att-src">web/image/module_name/static/description/image.png</attribute>
    </xpath>

    <!-- Your other template content goes here -->
</template>

Hope it helps


Avatar
Discard
Related Posts Replies Views Activity
0
Dec 23
1221
1
Jul 19
7967
3
Mar 17
8532
1
Mar 25
357
0
Nov 24
725