1 {include file="time_script.tpl"}
9 {$forms.timeRecordForm.open}
10 <table cellspacing="4" cellpadding="0" border="0">
11 {if $user->isPluginEnabled('wv')}
13 <td align="center" colspan=2">
14 <a href="time.php?date={$selected_date->toString()}">{$i18n.label.day_view}</a> / <a href="week.php?date={$selected_date->toString()}">{$i18n.label.week_view}</a>
23 <td align="right">{$i18n.label.user}:</td>
24 <td>{$forms.timeRecordForm.user.control}</td>
27 {if $user->isPluginEnabled('cl')}
29 <td align="right">{$i18n.label.client}{if $user->isPluginEnabled('cm')} (*){/if}:</td>
30 <td>{$forms.timeRecordForm.client.control}</td>
33 {if $user->isPluginEnabled('iv')}
35 <td align="right"> </td>
36 <td><label>{$forms.timeRecordForm.billable.control}{$i18n.form.time.billable}</label></td>
39 {if ($custom_fields && $custom_fields->fields[0])}
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>
44 {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
46 <td align="right">{$i18n.label.project} (*):</td>
47 <td>{$forms.timeRecordForm.project.control}</td>
50 {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
52 <td align="right">{$i18n.label.task}{if $user->task_required} (*){/if}:</td>
53 <td>{$forms.timeRecordForm.task.control}</td>
56 {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
58 <td align="right">{$i18n.label.start}:</td>
59 <td>{$forms.timeRecordForm.start.control} <input onclick="setNow('start');" type="button" tabindex="-1" value="{$i18n.button.now}"></td>
62 <td align="right">{$i18n.label.finish}:</td>
63 <td>{$forms.timeRecordForm.finish.control} <input onclick="setNow('finish');" type="button" tabindex="-1" value="{$i18n.button.now}"></td>
66 {if (($smarty.const.TYPE_DURATION == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
68 <td align="right">{$i18n.label.duration}:</td>
69 <td>{$forms.timeRecordForm.duration.control} {if $user->getDecimalMark() == ','}{str_replace('.', ',', $i18n.form.time.duration_format)}{else}{$i18n.form.time.duration_format}{/if}</td>
76 <tr><td>{$forms.timeRecordForm.date.control}</td></tr>
84 <td align="right">{$i18n.label.note}:</td>
85 <td align="left">{$forms.timeRecordForm.note.control}</td>
88 <td align="center" colspan="2">{$forms.timeRecordForm.btn_submit.control}</td>
96 <table border="0" cellpadding="3" cellspacing="1" width="100%">
98 {if $user->isPluginEnabled('cl')}
99 <td width="20%" class="tableHeader">{$i18n.label.client}</td>
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>
104 {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
105 <td class="tableHeader">{$i18n.label.task}</td>
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>
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>
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>
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>
123 {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
124 <td valign="top">{$record.task|escape}</td>
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} {/if}</td>
128 <td nowrap align="right" valign="top">{if $record.finish}{$record.finish}{else} {/if}</td>
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} {/if}</td>
132 <td valign="top" align="center">
133 {if $record.approved || $record.timesheet_id || $record.invoice_id}
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}">
153 <table cellpadding="3" cellspacing="1" width="720">
155 <td align="left">{$i18n.label.week_total}: {$week_total}</td>
156 <td align="right">{$i18n.label.day_total}: {$day_total}</td>
158 {if $user->isPluginEnabled('mq')}
160 <td align="left">{$i18n.label.month_total}: {$month_total}</td>
162 <td align="right">{$i18n.form.time.over_balance}: <span style="color: green;">{$balance_remaining}</span></td>
164 <td align="right">{$i18n.form.time.remaining_balance}: <span style="color: red;">{$balance_remaining}</span></td>
168 <td align="left">{$i18n.label.quota}: {$month_quota}</td>
170 <td align="right">{$i18n.form.time.over_quota}: <span style="color: green;">{$quota_remaining}</span></td>
172 <td align="right">{$i18n.form.time.remaining_quota}: <span style="color: red;">{$quota_remaining}</span></td>
178 {$forms.timeRecordForm.close}