I want to pass multiple variable to template. In odoo documentation, when we call a template and want to show the data, it uses t-out="0". that is just a variable. what if I want to pass multiple variable? is it possible?
<template id="watermark_report_tmpl">
<t t-if="state == 'draft'">
<div class="watermark-parent">
<div class="watermark">
<t t-foreach="range(30)" t-as="index">
<p t-out="state"/>
<p t-out="another_message"/>
</t>
</div>
</div>
</t>
</template>
<t t-call="watermark_report_tmpl">
</t>
I'm using odoo 16
https://www.odoo.com/documentation/16.0/developer/reference/frontend/qweb.html#calling-sub-templates