I designed the qweb report in Odoo 10.
I need to give 2 images in the qweb report layout. So i wrote new layout for this module.
Layout.xml:
<template id="gl_layout_header">
<div class="header">
<div class="row">
<div class="col-xs-offset-1 col-xs-7">
<img t-if="company.logo" t-att-src="'data:image/png;base64,%s' % company.logo" style="max-height: 120px;"/>
</div>
<div class="col-xs-28">
<img class="img img-responsive" src="/module/static/src/img/image2.png" style="max-height: 120px;"/>
</div>
</div>
</div>
</template>
I give 2 images in the qweb header report. But it shows only one company logo in the report header. So how to give 2 images in the layout header qweb report.