Work in progress on week view. Fixed the links.
[timetracker.git] / WEB-INF / templates / time.tpl
1 {include file="time_script.tpl"}
2
3 <style>
4 .not_billable td {
5   color: #ff6666;
6 }
7 </style>
8
9 {$forms.timeRecordForm.open}
10 <table cellspacing="4" cellpadding="0" border="0">
11 {if defined(WEEK_VIEW_DEBUG)}
12   <tr>
13     <td align="center" colspan=2">
14       <a href="time.php?date={$selected_date->toString()}">{$i18n.label.day_view}</a>&nbsp;/&nbsp;<a href="week.php?date={$selected_date->toString()}">{$i18n.label.week_view}</a>
15     </td>
16   </tr>
17 {/if}
18   <tr>
19     <td valign="top">
20       <table>
21 {if $on_behalf_control}
22         <tr>
23           <td align="right">{$i18n.label.user}:</td>
24           <td>{$forms.timeRecordForm.onBehalfUser.control}</td>
25         </tr>
26 {/if}
27 {if $user->isPluginEnabled('cl')}
28         <tr>
29           <td align="right">{$i18n.label.client}{if $user->isPluginEnabled('cm')} (*){/if}:</td>
30           <td>{$forms.timeRecordForm.client.control}</td>
31         </tr>
32 {/if}
33 {if $user->isPluginEnabled('iv')}
34         <tr>
35           <td align="right">&nbsp;</td>
36           <td><label>{$forms.timeRecordForm.billable.control}{$i18n.form.time.billable}</label></td>
37         </tr>
38 {/if}
39 {if ($custom_fields && $custom_fields->fields[0])}
40         <tr>
41           <td align="right">{$custom_fields->fields[0]['label']|escape}{if $custom_fields->fields[0]['required']} (*){/if}:</td><td>{$forms.timeRecordForm.cf_1.control}</td>
42         </tr>
43 {/if}
44 {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
45         <tr>
46           <td align="right">{$i18n.label.project} (*):</td>
47           <td>{$forms.timeRecordForm.project.control}</td>
48         </tr>
49 {/if}
50 {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
51         <tr>
52           <td align="right">{$i18n.label.task}:</td>
53           <td>{$forms.timeRecordForm.task.control}</td>
54         </tr>
55 {/if}
56 {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
57         <tr>
58           <td align="right">{$i18n.label.start}:</td>
59           <td>{$forms.timeRecordForm.start.control}&nbsp;<input onclick="setNow('start');" type="button" tabindex="-1" value="{$i18n.button.now}"></td>
60         </tr>
61         <tr>
62           <td align="right">{$i18n.label.finish}:</td>
63           <td>{$forms.timeRecordForm.finish.control}&nbsp;<input onclick="setNow('finish');" type="button" tabindex="-1" value="{$i18n.button.now}"></td>
64         </tr>
65 {/if}
66 {if (($smarty.const.TYPE_DURATION == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
67         <tr>
68           <td align="right">{$i18n.label.duration}:</td>
69           <td>{$forms.timeRecordForm.duration.control}&nbsp;{if $user->decimal_mark == ','}{str_replace('.', ',', $i18n.form.time.duration_format)}{else}{$i18n.form.time.duration_format}{/if}</td>
70         </tr>
71 {/if}
72       </table>
73     </td>
74     <td valign="top">
75       <table>
76         <tr><td>{$forms.timeRecordForm.date.control}</td></tr>
77       </table>
78     </td>
79   </tr>
80 </table>
81
82 <table>
83   <tr>
84     <td align="right">{$i18n.label.note}:</td>
85     <td align="left">{$forms.timeRecordForm.note.control}</td>
86   </tr>
87   <tr>
88     <td align="center" colspan="2">{$forms.timeRecordForm.btn_submit.control}</td>
89   </tr>
90 </table>
91
92 <table width="720">
93 <tr>
94   <td valign="top">
95 {if $time_records}
96       <table border="0" cellpadding="3" cellspacing="1" width="100%">
97       <tr>
98   {if $user->isPluginEnabled('cl')}
99         <td width="20%" class="tableHeader">{$i18n.label.client}</td>
100   {/if}
101   {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
102         <td class="tableHeader">{$i18n.label.project}</td>
103   {/if}
104   {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
105         <td class="tableHeader">{$i18n.label.task}</td>
106   {/if}
107   {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
108         <td width="5%" class="tableHeader" align="right">{$i18n.label.start}</td>
109         <td width="5%" class="tableHeader" align="right">{$i18n.label.finish}</td>
110   {/if}
111         <td width="5%" class="tableHeader">{$i18n.label.duration}</td>
112         <td class="tableHeader">{$i18n.label.note}</td>
113         <td width="5%" class="tableHeader">{$i18n.label.edit}</td>
114       </tr>
115   {foreach $time_records as $record}
116       <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}" {if !$record.billable} class="not_billable" {/if}>
117     {if $user->isPluginEnabled('cl')}
118         <td valign="top">{$record.client|escape}</td>
119     {/if}
120     {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
121         <td valign="top">{$record.project|escape}</td>
122     {/if}
123     {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
124         <td valign="top">{$record.task|escape}</td>
125     {/if}
126     {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
127         <td nowrap align="right" valign="top">{if $record.start}{$record.start}{else}&nbsp;{/if}</td>
128         <td nowrap align="right" valign="top">{if $record.finish}{$record.finish}{else}&nbsp;{/if}</td>
129     {/if}
130         <td align="right" valign="top">{if ($record.duration == '0:00' && $record.start <> '')}<font color="#ff0000">{$i18n.form.time.uncompleted}</font>{else}{$record.duration}{/if}</td>
131         <td valign="top">{if $record.comment}{$record.comment|escape}{else}&nbsp;{/if}</td>
132         <td valign="top" align="center">
133     {if $record.invoice_id}
134           &nbsp;
135     {else}
136           <a href="time_edit.php?id={$record.id}">{$i18n.label.edit}</a>
137       {if ($record.duration == '0:00' && $record.start <> '')}
138           <input type="hidden" name="record_id" value="{$record.id}">
139           <input type="hidden" name="browser_date" value="">
140           <input type="hidden" name="browser_time" value="">
141           <input type="submit" id="btn_stop" name="btn_stop" onclick="browser_date.value=get_date();browser_time.value=get_time()" value="{$i18n.button.stop}">
142       {/if}
143     {/if}
144         </td>
145       </tr>
146   {/foreach}
147     </table>
148 {/if}
149   </td>
150 </tr>
151 </table>
152 {if $time_records}
153 <table cellpadding="3" cellspacing="1" width="720">
154   <tr>
155     <td align="left">{$i18n.label.week_total}: {$week_total}</td>
156     <td align="right">{$i18n.label.day_total}: {$day_total}</td>
157   </tr>
158   {if $user->isPluginEnabled('mq')}
159   <tr>
160     <td align="left">{$i18n.label.month_total}: {$month_total}</td>
161     {if $over_quota}
162     <td align="right">{$i18n.form.time.over_quota}: <span style="color: green;">{$quota_remaining}</span></td>
163     {else}
164     <td align="right">{$i18n.form.time.remaining_quota}: <span style="color: red;">{$quota_remaining}</span></td>
165     {/if}
166   </tr>
167   {/if}
168 </table>
169 {/if}
170 {$forms.timeRecordForm.close}