mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
31 lines
859 B
PHP
31 lines
859 B
PHP
<section id="main" class="public-task">
|
|
<?= $this->render('task/details', array('task' => $task, 'project' => $project, 'editable' => false)) ?>
|
|
|
|
<?= $this->render('task/description', array(
|
|
'task' => $task,
|
|
'project' => $project,
|
|
'is_public' => true,
|
|
)) ?>
|
|
|
|
<?= $this->render('subtask/show', array(
|
|
'task' => $task,
|
|
'subtasks' => $subtasks,
|
|
'editable' => false
|
|
)) ?>
|
|
|
|
<?= $this->render('task_internal_link/show', array(
|
|
'task' => $task,
|
|
'links' => $links,
|
|
'project' => $project,
|
|
'editable' => false,
|
|
'is_public' => true,
|
|
)) ?>
|
|
|
|
<?= $this->render('comments/show', array(
|
|
'task' => $task,
|
|
'comments' => $comments,
|
|
'project' => $project,
|
|
'editable' => false,
|
|
'is_public' => true,
|
|
)) ?>
|
|
</section>
|