blob: 3f44ceecbbfcfec3be3168d844027813fc5fd913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<section id="main" class="public-task">
<?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?>
<p class="pull-right"><?= Helper\a(t('Back to the board'), 'board', 'readonly', array('token' => $project['token'])) ?></p>
<?= Helper\template('task_show_description', array('task' => $task)) ?>
<?= Helper\template('subtask_show', array('task' => $task, 'subtasks' => $subtasks, 'not_editable' => true)) ?>
<?= Helper\template('task_comments', array('task' => $task, 'comments' => $comments, 'not_editable' => true)) ?>
</section>
|