You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
594 B
14 lines
594 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- QR Code On Full page ticket -->
|
|
<template id="event_report_template_full_page_ticket_inherited"
|
|
inherit_id="event.event_report_template_full_page_ticket">
|
|
<xpath expr="//div[hasclass('o_event_full_page_ticket_side_info')]"
|
|
position="inside">
|
|
<t t-if="attendee">
|
|
<img style="height: 100px; width: 100px;"
|
|
t-attf-src="data:image/png;base64,{{attendee.event_ticket_id.ticket_qr_code_image}}"/>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|