From 583e6bf064bbbdd0b031ea429fb1de949ddf64a7 Mon Sep 17 00:00:00 2001 From: Matthew Cillo Date: Mon, 7 Dec 2015 22:40:55 -0500 Subject: added working template of compare hours --- app/Template/analytic/compare_hours.php | 57 +++++++++++++++++++++++++++++++++ app/Template/analytic/sidebar.php | 5 ++- 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 app/Template/analytic/compare_hours.php (limited to 'app/Template/analytic') diff --git a/app/Template/analytic/compare_hours.php b/app/Template/analytic/compare_hours.php new file mode 100644 index 00000000..c52023c8 --- /dev/null +++ b/app/Template/analytic/compare_hours.php @@ -0,0 +1,57 @@ + + +
+ +
+ + +

+ +
+
+ + isEmpty()): ?> +

+ isEmpty()): ?> + + + + + + + + + getCollection() as $task): ?> + + + + + + + + +
order(t('Id'), 'tasks.id') ?>order(t('Title'), 'tasks.title') ?>order(t('Status'), 'tasks.is_active') ?>order(t('Estimated Time'), 'tasks.time_estimated') ?>order(t('Actual Time'), 'tasks.time_spent') ?>
+ url->link('#'.$this->e($task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> + + url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> + + + + + + + + e($task['time_estimated']) ?> + + e($task['time_spent']) ?> +
+ + + +
+ diff --git a/app/Template/analytic/sidebar.php b/app/Template/analytic/sidebar.php index c942f7ed..746fcebb 100644 --- a/app/Template/analytic/sidebar.php +++ b/app/Template/analytic/sidebar.php @@ -19,7 +19,10 @@
  • app->getRouterAction() === 'leadandcycletime' ? 'class="active"' : '' ?>> url->link(t('Lead and cycle time'), 'analytic', 'leadAndCycleTime', array('project_id' => $project['id'])) ?>
  • +
  • app->getRouterAction() === 'comparehours' ? 'class="active"' : '' ?>> + url->link(t('Compare hours'), 'analytic', 'compareHours', array('project_id' => $project['id'])) ?> +
  • - \ No newline at end of file + -- cgit v1.2.3