mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
8 lines
714 B
PHP
8 lines
714 B
PHP
<?= $this->render('task/details', array('task' => $task, 'project' => $project)) ?>
|
|
<?= $this->render('task/time', array('task' => $task, 'values' => $values, 'date_format' => $date_format, 'date_formats' => $date_formats)) ?>
|
|
<?= $this->render('task/show_description', array('task' => $task)) ?>
|
|
<?= $this->render('tasklink/show', array('task' => $task, 'links' => $links)) ?>
|
|
<?= $this->render('subtask/show', array('task' => $task, 'subtasks' => $subtasks)) ?>
|
|
<?= $this->render('task/timesheet', array('task' => $task)) ?>
|
|
<?= $this->render('file/show', array('task' => $task, 'files' => $files)) ?>
|
|
<?= $this->render('task/comments', array('task' => $task, 'comments' => $comments, 'project' => $project)) ?>
|