blob: 47e440452a8f1a1afee4e3386f9fbe8a3bdd1a15 (
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_banner2">
<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 2</h2>
<p>This object's name is <span t-field="o.x_name"/></p>
</div>
</t>
</t>
</t>
</template>
</odoo>
|