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.
16 lines
655 B
16 lines
655 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Add a QR Code on Event registration -->
|
|
<template id="registration_complete"
|
|
inherit_id="website_event.registration_complete">
|
|
<xpath expr="//div[hasclass('o_wereg_confirmed_attendees')]/div/div"
|
|
position="inside">
|
|
<t t-if="attendee.event_ticket_id">
|
|
<div id="qr_code_image">
|
|
<img style="height: 100px; width: 100px;"
|
|
t-attf-src="data:image/png;base64,{{attendee.event_ticket_id.ticket_qr_code_image}}"/>
|
|
</div>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|