|
- = $this->url->link('#'.$subtask['task_id'], 'task', 'show', array('task_id' => $subtask['task_id'], 'project_id' => $subtask['project_id'])) ?>
+ = $this->render('task/dropdown', array('task' => array('id' => $subtask['task_id'], 'project_id' => $subtask['project_id']))) ?>
|
= $this->url->link($this->e($subtask['project_name']), 'board', 'show', array('project_id' => $subtask['project_id'])) ?>
diff --git a/app/Template/app/tasks.php b/app/Template/app/tasks.php
index 1213e4058..f4f9b2ad3 100644
--- a/app/Template/app/tasks.php
+++ b/app/Template/app/tasks.php
@@ -6,7 +6,7 @@
- | = $paginator->order('Id', 'tasks.id') ?> |
+ = $paginator->order('Id', 'tasks.id') ?> |
= $paginator->order(t('Project'), 'project_name') ?> |
= $paginator->order(t('Task'), 'title') ?> |
= t('Time tracking') ?> |
@@ -15,7 +15,7 @@
getCollection() as $task): ?>
|
- = $this->url->link('#'.$task['id'], 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ = $this->render('task/dropdown', array('task' => $task)) ?>
|
= $this->url->link($this->e($task['project_name']), 'board', 'show', array('project_id' => $task['project_id'])) ?>
diff --git a/app/Template/board/table_column.php b/app/Template/board/table_column.php
index 8c97f7d5d..58dcaf326 100644
--- a/app/Template/board/table_column.php
+++ b/app/Template/board/table_column.php
@@ -48,7 +48,7 @@
'>
-
+
diff --git a/app/Template/listing/show.php b/app/Template/listing/show.php
index aa17b2284..c24110f43 100644
--- a/app/Template/listing/show.php
+++ b/app/Template/listing/show.php
@@ -4,7 +4,7 @@
'filters' => $filters,
)) ?>
- isEmpty()): ?>
+ isEmpty()): ?>
= t('No tasks found.') ?>
isEmpty()): ?>
@@ -21,7 +21,7 @@
getCollection() as $task): ?>
|
- = $this->url->link('#'.$this->e($task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?>
+ = $this->render('task/dropdown', array('task' => $task)) ?>
|
= $this->e($task['swimlane_name'] ?: $task['default_swimlane']) ?>
diff --git a/app/Template/task/menu.php b/app/Template/task/menu.php
index 20fca22b5..857604301 100644
--- a/app/Template/task/menu.php
+++ b/app/Template/task/menu.php
@@ -72,7 +72,7 @@
- = $this->hook->render('template:task:menu:actions') ?>
+ = $this->hook->render('template:task:menu') ?>
| | |