X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Ftemplates%2Ftime.tpl;h=6c3fe2ab5591d1544dfb577ec4bb76b8f5a1d35b;hb=135b39df3ad421005e7f9c112fc7df1d44ebddc0;hp=6285628f0218ace64d8f92877392999217bb1cf2;hpb=ff71ab051012b2ac0664f08603b8c6455feba5db;p=timetracker.git diff --git a/WEB-INF/templates/time.tpl b/WEB-INF/templates/time.tpl index 6285628f..6c3fe2ab 100644 --- a/WEB-INF/templates/time.tpl +++ b/WEB-INF/templates/time.tpl @@ -9,37 +9,37 @@ // task_names[100] = "Coding"; // Task name. // Prepare an array of project ids for clients. -project_ids = new Array(); +var project_ids = new Array(); {foreach $client_list as $client} project_ids[{$client.id}] = "{$client.projects}"; {/foreach} // Prepare an array of project names. -project_names = new Array(); +var project_names = new Array(); {foreach $project_list as $project} project_names[{$project.id}] = "{$project.name|escape:'javascript'}"; {/foreach} // We'll use this array to populate project dropdown when client is not selected. var idx = 0; -projects = new Array(); +var projects = new Array(); {foreach $project_list as $project} projects[idx] = new Array("{$project.id}", "{$project.name|escape:'javascript'}"); idx++; {/foreach} // Prepare an array of task ids for projects. -task_ids = new Array(); +var task_ids = new Array(); {foreach $project_list as $project} task_ids[{$project.id}] = "{$project.tasks}"; {/foreach} // Prepare an array of task names. -task_names = new Array(); +var task_names = new Array(); {foreach $task_list as $task} task_names[{$task.id}] = "{$task.name|escape:'javascript'}"; {/foreach} // Mandatory top options for project and task dropdowns. -empty_label_project = '{$i18n.dropdown.select|escape:'javascript'}'; -empty_label_task = '{$i18n.dropdown.select|escape:'javascript'}'; +var empty_label_project = '{$i18n.dropdown.select|escape:'javascript'}'; +var empty_label_task = '{$i18n.dropdown.select|escape:'javascript'}'; // The fillDropdowns function populates the "project" and "task" dropdown controls // with relevant values. @@ -142,39 +142,40 @@ function fillTaskDropdown(id) { // The formDisable function disables some fields depending on what we have in other fields. function formDisable(formField) { - formFieldValue = eval("document.timeRecordForm." + formField + ".value"); - formFieldName = eval("document.timeRecordForm." + formField + ".name"); + var formFieldValue = eval("document.timeRecordForm." + formField + ".value"); + var formFieldName = eval("document.timeRecordForm." + formField + ".name"); + var x; if (((formFieldValue != "") && (formFieldName == "start")) || ((formFieldValue != "") && (formFieldName == "finish"))) { - var x = eval("document.timeRecordForm.duration"); + x = eval("document.timeRecordForm.duration"); x.value = ""; x.disabled = true; x.style.background = "#e9e9e9"; } if (((formFieldValue == "") && (formFieldName == "start") && (document.timeRecordForm.finish.value == "")) || ((formFieldValue == "") && (formFieldName == "finish") && (document.timeRecordForm.start.value == ""))) { - var x = eval("document.timeRecordForm.duration"); + x = eval("document.timeRecordForm.duration"); x.value = ""; x.disabled = false; x.style.background = "white"; } if ((formFieldValue != "") && (formFieldName == "duration")) { - var x = eval("document.timeRecordForm.start"); + x = eval("document.timeRecordForm.start"); x.value = ""; x.disabled = true; x.style.background = "#e9e9e9"; - var x = eval("document.timeRecordForm.finish"); + x = eval("document.timeRecordForm.finish"); x.value = ""; x.disabled = true; x.style.background = "#e9e9e9"; } if ((formFieldValue == "") && (formFieldName == "duration")) { - var x = eval("document.timeRecordForm.start"); + x = eval("document.timeRecordForm.start"); x.disabled = false; x.style.background = "white"; - var x = eval("document.timeRecordForm.finish"); + x = eval("document.timeRecordForm.finish"); x.disabled = false; x.style.background = "white"; } @@ -185,7 +186,7 @@ function setNow(formField) { var x = eval("document.timeRecordForm.start"); x.disabled = false; x.style.background = "white"; - var x = eval("document.timeRecordForm.finish"); + x = eval("document.timeRecordForm.finish"); x.disabled = false; x.style.background = "white"; var today = new Date(); @@ -237,7 +238,7 @@ function get_time() { {/if} {if ($custom_fields && $custom_fields->fields[0])} - {$custom_fields->fields[0]['label']|escape:'html'}{if $custom_fields->fields[0]['required']} (*){/if}:{$forms.timeRecordForm.cf_1.control} + {$custom_fields->fields[0]['label']|escape}{if $custom_fields->fields[0]['required']} (*){/if}:{$forms.timeRecordForm.cf_1.control} {/if} {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} @@ -248,7 +249,7 @@ function get_time() { {/if} {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} - {$i18n.label.task} (*): + {$i18n.label.task}: {$forms.timeRecordForm.task.control} {/if} @@ -292,7 +293,7 @@ function get_time() { {if $time_records} - +
{if $user->isPluginEnabled('cl')} @@ -304,8 +305,8 @@ function get_time() { {/if} {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))} - - + + {/if} @@ -314,30 +315,30 @@ function get_time() { {foreach $time_records as $record} {if $user->isPluginEnabled('cl')} - + {/if} {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} - + {/if} {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} - + {/if} {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))} - - + + {/if} - - - + + @@ -354,7 +355,7 @@ function get_time() { - {if $month_total} + {if $user->isPluginEnabled('mq')} {if $over_quota}
{$i18n.label.client}{$i18n.label.task}{$i18n.label.start}{$i18n.label.finish}{$i18n.label.start}{$i18n.label.finish}{$i18n.label.duration} {$i18n.label.note}
{$record.client|escape:'html'}{$record.client|escape}{$record.project|escape:'html'}{$record.project|escape}{$record.task|escape:'html'}{$record.task|escape}{if $record.start}{$record.start}{else} {/if}{if $record.finish}{$record.finish}{else} {/if}{if $record.start}{$record.start}{else} {/if}{if $record.finish}{$record.finish}{else} {/if}{if $record.duration <> '0:00'}{$record.duration}{else}{$i18n.form.time.uncompleted}{/if}{if $record.comment}{$record.comment|escape:'html'}{else} {/if} + {if ($record.duration == '0:00' && $record.start <> '')}{$i18n.form.time.uncompleted}{else}{$record.duration}{/if}{if $record.comment}{$record.comment|escape}{else} {/if} {if $record.invoice_id}   {else} - {$i18n.label.edit} - {if $record.duration == '0:00'} - - - - + {$i18n.label.edit} + {if ($record.duration == '0:00' && $record.start <> '')} + + + + {/if} {/if} {$i18n.label.week_total}: {$week_total} {$i18n.label.day_total}: {$day_total}
{$i18n.label.month_total}: {$month_total}