Fixed approve_all_reports right assignment and check.
[timetracker.git] / WEB-INF / templates / timesheet_view.tpl
1 <script>
2   function chLocation(newLocation) { document.location = newLocation; }
3 </script>
4
5 <table cellspacing="0" cellpadding="7" border="0" width="720">
6   <tr>
7     <td>
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>
12 {/if}
13 {if $timesheet['client_id']}
14         <tr><td align="left"><b>{$i18n.label.client}:</b> {$timesheet['client_name']|escape}</td></tr>
15 {/if}
16 {if $timesheet['project_id']}
17         <tr><td align="left"><b>{$i18n.label.project}:</b> {$timesheet['project_name']|escape}</td></tr>
18 {/if}
19 {if $timesheet['comment']}
20         <tr><td align="left"><b>{$i18n.label.comment}:</b> {$timesheet['comment']|escape}</td></tr>
21 {/if}
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>
24 {/if}
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>
27 {/if}
28 {if $timesheet['approve_comment']}
29         <tr><td align="left"><b>{$i18n.label.note}:</b> {$timesheet['approve_comment']|escape}</td></tr>
30 {/if}
31       </table>
32     </td>
33   </tr>
34   <tr>
35     <td valign="top">
36       <table border="0" cellpadding="3" cellspacing="1" width="100%">
37       <tr>
38         <td class="tableHeader">{$group_by_header|escape}</td>
39         <td class="tableHeaderCentered" width="5%">{$i18n.label.duration}</td>
40       </tr>
41   {foreach $subtotals as $subtotal}
42       <tr class="rowReportSubtotal">
43         <td class="cellLeftAlignedSubtotal">{if $subtotal['name']}{$subtotal['name']|escape}{else}&nbsp;{/if}</td>
44         <td class="cellRightAlignedSubtotal">{$subtotal['time']}</td>
45       </tr>
46   {/foreach}
47       <tr><td>&nbsp;</td></tr>
48       <tr class="rowReportSubtotal">
49         <td class="cellLeftAlignedSubtotal">{$i18n.label.total}</td>
50         <td nowrap class="cellRightAlignedSubtotal">{$totals['time']}</td>
51       </tr>
52       <tr><td>&nbsp;</td></tr>
53       </table>
54
55 {$forms.timesheetForm.open}
56   {if $show_submit}
57   <table width="720" cellspacing="0" cellpadding="0" border="0">
58   <tr>
59     <td align="center">
60       <table>
61         <tr><td>{if $show_approvers}{$i18n.form.mail.to}: {$forms.timesheetForm.approver.control}{/if} {$forms.timesheetForm.btn_submit.control}</td></tr>
62       </table>
63     </td>
64   </tr>
65   </table>
66   {/if}
67   {if $show_approve}
68   <table width="720" cellspacing="0" cellpadding="0" border="0">
69   <tr>
70     <td align="center">
71       <table>
72         <tr><td align="center">{$i18n.label.comment}:</td></tr>
73         <tr><td align="center">{$forms.timesheetForm.comment.control}</td></tr>
74         <tr><td align="center">{$forms.timesheetForm.btn_approve.control} {$forms.timesheetForm.btn_disapprove.control}</td></tr>
75       </table>
76     </td>
77   </tr>
78   </table>
79   {/if}
80 {$forms.timesheetForm.close}
81
82     </td>
83   </tr>
84 </table>