2014-11-23 20:13:38 +01:00
|
|
|
<section id="main" class="public-task">
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
<?= Helper\template('task/details', array('task' => $task, 'project' => $project)) ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
|
|
|
|
<p class="pull-right"><?= Helper\a(t('Back to the board'), 'board', 'readonly', array('token' => $project['token'])) ?></p>
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
<?= Helper\template('task/show_description', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'project' => $project,
|
|
|
|
'is_public' => true
|
|
|
|
)) ?>
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
<?= Helper\template('subtask/show', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'subtasks' => $subtasks,
|
|
|
|
'not_editable' => true
|
|
|
|
)) ?>
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
<?= Helper\template('task/comments', array(
|
2014-11-23 20:13:38 +01:00
|
|
|
'task' => $task,
|
|
|
|
'comments' => $comments,
|
|
|
|
'project' => $project,
|
|
|
|
'not_editable' => true,
|
|
|
|
'is_public' => true,
|
|
|
|
)) ?>
|
|
|
|
|
|
|
|
</section>
|