我正在尝试在Odoo版本10中创建Qweb报告,我的要求是在行中的两列中打印for-each值,
<t t-call="report.html_container">
<t t-foreach="docs" t-as="doc">
<!-- Here i need to print the doc data in two columns , then proceed to next row -->
</t>
</t>
请有人帮我打印两列数据,然后继续行
答案 0 :(得分:1)
<div class="row">
<div class="col-xs-6">
<p t-field="enter your name"/>
</div>
<div class="col-xs-6" >
<p t-field="enter your name"/>
</div>
</div>