mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
53 lines
2 KiB
PHP
53 lines
2 KiB
PHP
<?= $this->hook->render('template:task:show:top', array('task' => $task, 'project' => $project)) ?>
|
|
|
|
<?= $this->render('task/details', array(
|
|
'task' => $task,
|
|
'tags' => $tags,
|
|
'project' => $project,
|
|
'editable' => $this->user->hasProjectAccess('TaskModificationController', 'edit', $project['id']),
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-description', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('task/description', array('task' => $task)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-subtasks', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('subtask/show', array(
|
|
'task' => $task,
|
|
'subtasks' => $subtasks,
|
|
'project' => $project,
|
|
'editable' => true,
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-internal-links', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('task_internal_link/show', array(
|
|
'task' => $task,
|
|
'links' => $internal_links,
|
|
'project' => $project,
|
|
'link_label_list' => $link_label_list,
|
|
'editable' => true,
|
|
'is_public' => false,
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-external-links', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('task_external_link/show', array(
|
|
'task' => $task,
|
|
'links' => $external_links,
|
|
'project' => $project,
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-attachments', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('task_file/show', array(
|
|
'task' => $task,
|
|
'files' => $files,
|
|
'images' => $images
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:before-comments', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('comments/show', array(
|
|
'task' => $task,
|
|
'comments' => $comments,
|
|
'project' => $project,
|
|
'editable' => $this->user->hasProjectAccess('CommentController', 'edit', $project['id']),
|
|
)) ?>
|
|
|
|
<?= $this->hook->render('template:task:show:bottom', array('task' => $task, 'project' => $project)) ?>
|