Enhance task link view to mimic the subtask view

This commit is contained in:
Olivier Maridat
2016-03-08 11:12:18 +01:00
parent 7026e8d622
commit 7b20a14e8d
9 changed files with 130 additions and 114 deletions

View File

@@ -10,6 +10,12 @@
'is_public' => true,
)) ?>
<?= $this->render('subtask/show', array(
'task' => $task,
'subtasks' => $subtasks,
'editable' => false
)) ?>
<?= $this->render('tasklink/show', array(
'task' => $task,
'links' => $links,
@@ -18,12 +24,6 @@
'is_public' => true,
)) ?>
<?= $this->render('subtask/show', array(
'task' => $task,
'subtasks' => $subtasks,
'editable' => false
)) ?>
<?= $this->render('task/comments', array(
'task' => $task,
'comments' => $comments,