Files
Odoo-Tutorial/student_management/reports/student_report_template.xml
2025-03-14 10:13:03 +07:00

29 lines
1005 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_student_template">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="doc">
<t t-call="web.internal_layout">
<div class="page">
<table class="table table-condensed">
<thead>
<tr>
<th>Học sinh</th>
</tr>
</thead>
<tbody>
<tr t-foreach="doc.student_ids" t-as="student">
<td>
<t t-esc="student.name" />
</td>
</tr>
</tbody>
</table>
</div>
</t>
</t>
</t>
</template>
</odoo>