1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <template id="report_external_header_ipneos" inherit_id="report.external_layout_header">
<xpath expr="//div[@class='header']" position="replace">
<div class="header">
<div class="row">
<div class="col-xs-9">
<div>
<b t-field="company.name" t-field-options='{"widget":"name", "no_marker": true}'></b>
</div>
<div>
<small t-field="company.phone" t-field-options='{"widget":"phone", "no_marker": true}' />
</div>
<div>
<small t-field="company.email" t-field-options='{"widget":"email", "no_marker": true}' />
</div>
<div>
<small t-field="company.website" t-field-options='{"widget":"website", "no_marker": true}' />
</div>
</div>
<div class="col-xs-3">
<img t-if="company.logo" t-att-src="'data:image/png;base64,%s' % company.logo"
style="margin-top:8px; margin-right:45px; max-height: 64px;" />
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div style="height:16px; border-bottom: 1px solid #CCC;"></div>
</div>
</div>
</div>
</xpath>
</template> |
Partager