看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<section id="main" class="public-task">
<?= $this->render('task/details', array(
'task' => $task,
'tags' => $tags,
'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('task_comments/show', array(
'task' => $task,
'comments' => $comments,
'project' => $project,
'editable' => false,
'is_public' => true,
)) ?>
</section>