2014-11-23 20:13:38 +01:00
|
|
|
<section id="main" class="public-task">
|
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= $this->render('task/details', array('task' => $task, 'project' => $project)) ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<p class="pull-right"><?= $this->a(t('Back to the board'), 'board', 'readonly', array('token' => $project['token'])) ?></p>
|
2014-11-23 20:13:38 +01:00
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= $this->render('task/show_description', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'project' => $project,
|
|
|
|
'is_public' => true
|
|
|
|
)) ?>
|
|
|
|
|
2015-02-25 17:29:06 +01:00
|
|
|
<?= $this->render('tasklink/show', array(
|
|
|
|
'task' => $task,
|
|
|
|
'links' => $links,
|
|
|
|
'project' => $project,
|
|
|
|
'not_editable' => true
|
|
|
|
)) ?>
|
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= $this->render('subtask/show', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'subtasks' => $subtasks,
|
|
|
|
'not_editable' => true
|
|
|
|
)) ?>
|
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= $this->render('task/comments', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'comments' => $comments,
|
|
|
|
'project' => $project,
|
|
|
|
'not_editable' => true,
|
|
|
|
'is_public' => true,
|
|
|
|
)) ?>
|
|
|
|
|
|
|
|
</section>
|