mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
17 lines
1 KiB
PHP
17 lines
1 KiB
PHP
<section id="main">
|
|
<?= $this->projectHeader->render($project, 'TaskListController', 'show') ?>
|
|
<?= $this->hook->render('template:task:layout:top', array('task' => $task)) ?>
|
|
<section
|
|
class="sidebar-container" id="task-view"
|
|
data-edit-url="<?= $this->url->href('TaskModificationController', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
|
|
data-subtask-url="<?= $this->url->href('SubtaskController', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
|
|
data-internal-link-url="<?= $this->url->href('TaskInternalLinkController', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
|
|
data-comment-url="<?= $this->url->href('CommentController', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>">
|
|
|
|
<?= $this->render($sidebar_template, array('task' => $task)) ?>
|
|
|
|
<div class="sidebar-content">
|
|
<?= $content_for_sublayout ?>
|
|
</div>
|
|
</section>
|
|
</section>
|