Added delete option on time.php pages.
[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 $user->isPluginEnabled('wv')}
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 $user_dropdown}
22         <tr>
23           <td align="right">{$i18n.label.user}:</td>
24           <td>{$forms.timeRecordForm.user.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}{if $user->task_required} (*){/if}:</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->getDecimalMark() == ','}{str_replace('.', ',', $i18n.form.time.duration_format)}{else}{$i18n.form.time.duration_format}{/if}</td>
70         </tr>
71 {/if}
72 {if $template_dropdown}
73         <tr>
74           <td align="right">{$i18n.label.template}:</td>
75           <td>{$forms.timeRecordForm.template.control}</td>
76         </tr>
77 {/if}
78       </table>
79     </td>
80     <td valign="top">
81       <table>
82         <tr><td>{$forms.timeRecordForm.date.control}</td></tr>
83       </table>
84     </td>
85   </tr>
86 </table>
87
88 <table>
89   <tr>
90     <td align="right">{$i18n.label.note}:</td>
91     <td align="left">{$forms.timeRecordForm.note.control}</td>
92   </tr>
93   <tr>
94     <td align="center" colspan="2">{$forms.timeRecordForm.btn_submit.control}</td>
95   </tr>
96 </table>
97
98 <table width="720">
99 <tr>
100   <td valign="top">
101 {if $time_records}
102       <table border="0" cellpadding="3" cellspacing="1" width="100%">
103       <tr>
104   {if $user->isPluginEnabled('cl')}
105         <td width="20%" class="tableHeader">{$i18n.label.client}</td>
106   {/if}
107   {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
108         <td class="tableHeader">{$i18n.label.project}</td>
109   {/if}
110   {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
111         <td class="tableHeader">{$i18n.label.task}</td>
112   {/if}
113   {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
114         <td width="5%" class="tableHeader" align="right">{$i18n.label.start}</td>
115         <td width="5%" class="tableHeader" align="right">{$i18n.label.finish}</td>
116   {/if}
117         <td width="5%" class="tableHeader">{$i18n.label.duration}</td>
118         <td class="tableHeader">{$i18n.label.note}</td>
119         <td></td>
120         <td></td>
121       </tr>
122   {foreach $time_records as $record}
123       <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}" {if !$record.billable} class="not_billable" {/if}>
124     {if $user->isPluginEnabled('cl')}
125         <td valign="top">{$record.client|escape}</td>
126     {/if}
127     {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
128         <td valign="top">{$record.project|escape}</td>
129     {/if}
130     {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
131         <td valign="top">{$record.task|escape}</td>
132     {/if}
133     {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
134         <td nowrap align="right" valign="top">{if $record.start}{$record.start}{else}&nbsp;{/if}</td>
135         <td nowrap align="right" valign="top">{if $record.finish}{$record.finish}{else}&nbsp;{/if}</td>
136     {/if}
137         <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>
138         <td valign="top">{if $record.comment}{$record.comment|escape}{else}&nbsp;{/if}</td>
139         <td valign="top" align="center">
140     {if $record.approved || $record.timesheet_id || $record.invoice_id}
141           &nbsp;
142     {else}
143           <a href="time_edit.php?id={$record.id}"><img class="table_icon" alt="{$i18n.label.edit}" src="images/icon_edit.png"></a>
144       {if ($record.duration == '0:00' && $record.start <> '')}
145           <input type="hidden" name="record_id" value="{$record.id}">
146           <input type="hidden" name="browser_date" value="">
147           <input type="hidden" name="browser_time" value="">
148           <input type="submit" id="btn_stop" name="btn_stop" onclick="browser_date.value=get_date();browser_time.value=get_time()" value="{$i18n.button.stop}">
149       {/if}
150     {/if}
151         </td>
152         <td valign="top" align="center">
153     {if $record.approved || $record.timesheet_id || $record.invoice_id}
154           &nbsp;
155     {else}
156           <a href="time_delete.php?id={$record.id}"><img class="table_icon" alt="{$i18n.label.delete}" src="images/icon_delete.png"></a>
157     {/if}
158         </td>
159       </tr>
160   {/foreach}
161     </table>
162 {/if}
163   </td>
164 </tr>
165 </table>
166
167 <table cellpadding="3" cellspacing="1" width="720">
168   <tr>
169     <td align="left">{$i18n.label.week_total}: {$week_total}</td>
170     <td align="right">{$i18n.label.day_total}: {$day_total}</td>
171   </tr>
172   {if $user->isPluginEnabled('mq')}
173   <tr>
174     <td align="left">{$i18n.label.month_total}: {$month_total}</td>
175     {if $over_balance}
176     <td align="right">{$i18n.form.time.over_balance}: <span style="color: green;">{$balance_remaining}</span></td>
177     {else}
178     <td align="right">{$i18n.form.time.remaining_balance}: <span style="color: red;">{$balance_remaining}</span></td>
179     {/if}
180   </tr>
181   <tr>
182     <td align="left">{$i18n.label.quota}: {$month_quota}</td>
183     {if $over_quota}
184     <td align="right">{$i18n.form.time.over_quota}: <span style="color: green;">{$quota_remaining}</span></td>
185     {else}
186     <td align="right">{$i18n.form.time.remaining_quota}: <span style="color: red;">{$quota_remaining}</span></td>
187     {/if}
188   </tr>
189   {/if}
190 </table>
191
192 {$forms.timeRecordForm.close}