summaryrefslogtreecommitdiff
path: root/app/Template/task_public.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
commit9fb2e711899ae328a7a09295468793ffbc16c27c (patch)
tree1efba503386d939c61767f8fbbf006dcfdcd6a34 /app/Template/task_public.php
parent8a02ceb40e88c27777a95251083bc21629d62bb0 (diff)
Move tasks templates to a subfolder
Diffstat (limited to 'app/Template/task_public.php')
-rw-r--r--app/Template/task_public.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/Template/task_public.php b/app/Template/task_public.php
deleted file mode 100644
index 370204ce..00000000
--- a/app/Template/task_public.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<section id="main" class="public-task">
-
- <?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?>
-
- <p class="pull-right"><?= Helper\a(t('Back to the board'), 'board', 'readonly', array('token' => $project['token'])) ?></p>
-
- <?= Helper\template('task_show_description', array(
- 'task' => $task,
- 'project' => $project,
- 'is_public' => true
- )) ?>
-
- <?= Helper\template('subtask/show', array(
- 'task' => $task,
- 'subtasks' => $subtasks,
- 'not_editable' => true
- )) ?>
-
- <?= Helper\template('task_comments', array(
- 'task' => $task,
- 'comments' => $comments,
- 'project' => $project,
- 'not_editable' => true,
- 'is_public' => true,
- )) ?>
-
-</section> \ No newline at end of file