summaryrefslogtreecommitdiff
path: root/indoteknik_custom/report/report_banner_banner.xml
blob: 4e51f0a276cd222546014af1c1cd8aaf66648c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
    <template id="report_banner_banner">
        <t t-call="web.html_container">
            <t t-foreach="docs" t-as="o">
                <t t-call="web.external_layout">
                    <div class="page">
                        <h2>Report title</h2>
                        <p>This object's name is <span t-field="o.x_name"/></p>
                    </div>
                </t>
            </t>
        </t>
    </template>
</odoo>