mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
14 lines
525 B
PHP
14 lines
525 B
PHP
|
|
<?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?>
|
|
|
|
<?= Helper\template('task_show_description', array('task' => $task)) ?>
|
|
|
|
<?= Helper\template('subtask_show', array('task' => $task, 'subtasks' => $subtasks)) ?>
|
|
|
|
<?php if (! empty($files)): ?>
|
|
<div id="attachments" class="task-show-section">
|
|
<?= Helper\template('file_show', array('task' => $task, 'files' => $files)) ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= Helper\template('task_comments', array('task' => $task, 'comments' => $comments)) ?>
|