<odoo>
    <template id="report_timesheet">
        <t t-call="web.html_container">
            <t t-call="web.external_layout">
                <t t-set="show_task" t-value="bool(docs.mapped('task_id'))"/>
                <t t-set="show_project" t-value="len(docs.mapped('project_id')) > 1"/>
                <div class="page">
                    <div class="oe_structure"/>
                    <div class="row">
                        <div class="col-lg-12">
                            <h2>
                                <span>Timesheet Entries</span>
                            </h2>
                        </div>
                    </div>

                    <div class="row">
                        <div class="col-lg-12">
                            <table class="table table-sm">
                                <thead>
                                    <tr>
                                        <th><span>Date</span></th>
                                        <th><span>Responsible</span></th>
                                        <th><span>Description</span></th>
                                        <th t-if="show_task"><t t-if="show_project">Project - </t>Task</th>
                                        <th class="text-right"><span>Time</span></th>
                                    </tr>
                               </thead>
                               <tbody>
                                    <tr t-foreach="docs" t-as="l">
                                        <td>
                                           <span t-field="l.date"/>
                                        </td>
                                        <td>
                                           <span t-field="l.user_id.partner_id.name"/>
                                        </td>
                                        <td >
                                            <span t-field="l.name" t-options="{'widget': 'text'}"/>
                                        </td>
                                        <td t-if="show_task">
                                            <t t-if="show_project"><span t-field="l.project_id.name"/></t>
                                            <t t-if="show_project and l.task_id"> - </t>
                                            <t t-if="l.task_id"><span t-field="l.task_id.name"/></t>
                                        </td>
                                        <td class="text-right">
                                            <span t-field="l.unit_amount" t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour', 'round': 'minute'}"/>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td />
                                        <td />
                                        <td t-if="show_task"/>
                                        <td class="text-right"><strong>Total</strong></td>
                                        <td class="text-right"><strong t-esc="sum(docs.mapped('unit_amount'))" t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour', 'round': 'minute'}"/></td>
                                    </tr>
                                </tbody>
                            </table>
                        </div>
                    </div>
                    <div class="oe_structure"/>
                </div>
            </t>
        </t>
    </template>

    <report id="timesheet_report"
            model="account.analytic.line"
            string="Timesheet Entries"
            report_type="qweb-pdf"
            name="hr_timesheet.report_timesheet"
            file="report_timesheet"
    />
</odoo>
