I'm trying to put an image sotred in my custom module in /static/src/img/ and i found that the supossed correct way is with <img class="img img-responsive" src="/my_module/static/src/img/my_image.png"/>
But the image is not showing at all, i also tried with the absolute path but still not working, this is the part of the template im working on:
<img t-if="obj.company_id.extra_logo"
class="img" style="max-width: 40mm; max-height: 20mm;"
t-att-src="'data:image/png;base64,%s' % obj.company_id.extra_logo"/>
<img t-if="not obj.company_id.extra_logo"
class="img" style="max-width: 40mm; max-height: 20mm;"
src="/extra_reports/static/src/img/default_logo.png"/>
** I tried without the t-if condition for the second image, but in any case a small square is showed, representing the image without the image itself.
What i'm doing wrong?