2 function chLocation(newLocation) { document.location = newLocation; }
5 <table cellspacing="0" cellpadding="7" border="0" width="720">
8 <table border=0 width=100%>
9 <tr><td align="center"><b style="font-size: 15pt; font-family: Arial, Helvetica, sans-serif;">{$timesheet['name']|escape} </b></td></tr>
10 {if $user->behalfUser}
11 <tr><td align="left"><b>{$i18n.label.user}:</b> {$timesheet['user_name']|escape}</td></tr>
13 {if $timesheet['client_id']}
14 <tr><td align="left"><b>{$i18n.label.client}:</b> {$timesheet['client_name']|escape}</td></tr>
16 {if $timesheet['project_id']}
17 <tr><td align="left"><b>{$i18n.label.project}:</b> {$timesheet['project_name']|escape}</td></tr>
19 {if $timesheet['comment']}
20 <tr><td align="left"><b>{$i18n.label.comment}:</b> {$timesheet['comment']|escape}</td></tr>
22 {if $timesheet['approve_status'] == null}
23 <tr><td align="left"><b>{$i18n.label.submitted}:</b> {if $timesheet.submit_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}</td></tr>
25 {if $timesheet['approve_status'] != null}
26 <tr><td align="left"><b>{$i18n.label.approved}:</b> {if $timesheet.approve_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}</td></tr>
28 {if $timesheet['approve_comment']}
29 <tr><td align="left"><b>{$i18n.label.note}:</b> {$timesheet['approve_comment']|escape}</td></tr>
36 <table border="0" cellpadding="3" cellspacing="1" width="100%">
38 <td class="tableHeader">{$group_by_header|escape}</td>
39 <td class="tableHeaderCentered" width="5%">{$i18n.label.duration}</td>
40 <td class="tableHeaderCentered" width="5%">{$i18n.label.cost}</td>
42 {foreach $subtotals as $subtotal}
43 <tr class="rowReportSubtotal">
44 <td class="cellLeftAlignedSubtotal">{if $subtotal['name']}{$subtotal['name']|escape}{else} {/if}</td>
45 <td class="cellRightAlignedSubtotal">{$subtotal['time']}</td>
46 <td class="cellRightAlignedSubtotal">{if $user->can('manage_invoices') || $user->isClient()}{$subtotal['cost']}{else}{$subtotal['expenses']}{/if}</td>
49 <tr><td> </td></tr>
50 <tr class="rowReportSubtotal">
51 <td class="cellLeftAlignedSubtotal">{$i18n.label.total}</td>
52 <td nowrap class="cellRightAlignedSubtotal">{$totals['time']}</td>
53 <td nowrap class="cellRightAlignedSubtotal">{$user->currency|escape} {if $user->can('manage_invoices') || $user->isClient()}{$totals['cost']}{else}{$totals['expenses']}{/if}</td>
57 {$forms.timesheetForm.open}
59 <table width="720" cellspacing="0" cellpadding="0" border="0">
63 <tr><td>{if $show_approvers}{$i18n.form.mail.to}: {$forms.timesheetForm.approver.control}{/if} {$forms.timesheetForm.btn_submit.control}</td></tr>
70 <table width="720" cellspacing="0" cellpadding="0" border="0">
74 <tr><td align="center">{$i18n.label.comment}:</td></tr>
75 <tr><td align="center">{$forms.timesheetForm.comment.control}</td></tr>
76 <tr><td align="center">{$forms.timesheetForm.btn_approve.control} {$forms.timesheetForm.btn_disapprove.control}</td></tr>
82 {$forms.timesheetForm.close}