29 lines
1005 B
XML
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> |