summaryrefslogtreecommitdiff
path: root/addons/event_sale/report/event_event_templates.xml
blob: fa17929cd6477717d41921e8bfd759af8480ce52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<odoo>

    <template id="event_registration_report_template_badge" inherit_id="event.event_registration_report_template_badge">
        <xpath expr="//div[@id='o_event_name']" position="inside">
            <div t-if="o.event_ticket_id" class="col-12 text-center" style="padding:0px;">
                <div style="background: lightgrey; height: 65px;" class="mt16 text-center">
                    <h3><span t-field="o.event_ticket_id"/></h3>
                </div>
            </div>
        </xpath>
    </template>

    <template id="event_event_report_template_badge" inherit_id="event.event_event_report_template_badge">
        <xpath expr="//div[@id='o_event_attendee_name']" position="inside">
            <div t-if="bool(len(event.event_ticket_ids))" class="col-12" style="padding: 0px;" t-ignore="true">
                <div style="background: lightgrey; height: 65px;" class="mt16 text-center">
                    <h3>Ticket Type</h3>
                </div>
            </div>
        </xpath>
    </template>

</odoo>