You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
840 B
21 lines
840 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--
|
|
This template defines the structure and layout for the Attendance Report.
|
|
It uses two call tags to include other templates for the external layout and HTML container.
|
|
The report data is expected to contain 'tHead' and 'tBody' keys for the table's header and body content, respectively.
|
|
-->
|
|
<template id="report_hr_attendance">
|
|
<t t-call="web.html_container">
|
|
<t t-call="web.internal_layout">
|
|
<div class="page">
|
|
<h2>Attendance Report</h2>
|
|
<table class="table">
|
|
<div t-raw="data['tHead']"/>
|
|
<div t-raw="data['tBody']"/>
|
|
</table>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|