X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Ftemplates%2Fmobile%2Ftimer.tpl;h=c91dd4f4e2251e6bd57ec7a3cd66abcdeaf24344;hb=135b39df3ad421005e7f9c112fc7df1d44ebddc0;hp=b32da743759723e891a872cfbe4a26bd88236215;hpb=2a998c95dd9e86a9ad57939b056b62cab7402b08;p=timetracker.git diff --git a/WEB-INF/templates/mobile/timer.tpl b/WEB-INF/templates/mobile/timer.tpl index b32da743..c91dd4f4 100644 --- a/WEB-INF/templates/mobile/timer.tpl +++ b/WEB-INF/templates/mobile/timer.tpl @@ -8,46 +8,46 @@ // task_ids[325] = "100,101,302,303,304"; // Comma-separated list ot task ids for project. // task_names[100] = "Coding"; // Task name. -//Prepare an array of projects ids for clients. -project_ids = new Array(); +// Prepare an array of projects ids for clients. +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 populateDropdowns function populates the "project" and "task" dropdown controls +// The fillDropdowns function populates the "project" and "task" dropdown controls // with relevant values. function fillDropdowns() { - if(document.body.contains(document.timeRecordForm.client)) - fillProjectDropdown(document.timeRecordForm.client.value); + if(document.body.contains(document.timerRecordForm.client)) + fillProjectDropdown(document.timerRecordForm.client.value); - fillTaskDropdown(document.timeRecordForm.project.value); + fillTaskDropdown(document.timerRecordForm.project.value); } // The fillProjectDropdown function populates the project combo box with @@ -213,7 +213,7 @@ startTimer();
- +
@@ -221,11 +221,11 @@ startTimer(); {/if} -{if in_array('iv', explode(',', $user->plugins))} +{if $user->isPluginEnabled('iv')} {/if} {if ($custom_fields && $custom_fields->fields[0])} - + {/if} {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} @@ -252,13 +252,13 @@ startTimer();
{$i18n.label.client}:
{$forms.timerRecordForm.client.control}
{$custom_fields->fields[0]['label']|escape:'html'}:
{$custom_fields->fields[0]['label']|escape}:
{$forms.timerRecordForm.cf_1.control}
{if $time_records} - +
- + - +
{$i18n.label.day_total}:{$i18n.label.day_total}: {$day_total}
{$i18n.label.week_total}:{$i18n.label.week_total}: {$week_total}