summaryrefslogtreecommitdiff
path: root/app/Template/task_list/show.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/task_list/show.php')
-rw-r--r--app/Template/task_list/show.php66
1 files changed, 0 insertions, 66 deletions
diff --git a/app/Template/task_list/show.php b/app/Template/task_list/show.php
deleted file mode 100644
index 8454d13f..00000000
--- a/app/Template/task_list/show.php
+++ /dev/null
@@ -1,66 +0,0 @@
-<section id="main">
- <?= $this->projectHeader->render($project, 'TaskListController', 'show') ?>
-
- <?php if ($paginator->isEmpty()): ?>
- <p class="alert"><?= t('No tasks found.') ?></p>
- <?php elseif (! $paginator->isEmpty()): ?>
- <table class="table-striped table-scrolling table-small">
- <tr>
- <th class="column-5"><?= $paginator->order(t('Id'), 'tasks.id') ?></th>
- <th class="column-10"><?= $paginator->order(t('Swimlane'), 'tasks.swimlane_id') ?></th>
- <th class="column-10"><?= $paginator->order(t('Column'), 'tasks.column_id') ?></th>
- <th class="column-10"><?= $paginator->order(t('Category'), 'tasks.category_id') ?></th>
- <th class="column-6"><?= $paginator->order(t('Priority'), \Kanboard\Model\TaskModel::TABLE.'.priority') ?></th>
- <th><?= $paginator->order(t('Title'), 'tasks.title') ?></th>
- <th class="column-10"><?= $paginator->order(t('Assignee'), 'users.username') ?></th>
- <th class="column-10"><?= $paginator->order(t('Due date'), 'tasks.date_due') ?></th>
- <th class="column-5"><?= $paginator->order(t('Status'), 'tasks.is_active') ?></th>
- </tr>
- <?php foreach ($paginator->getCollection() as $task): ?>
- <tr>
- <td class="color-<?= $task['color_id'] ?>">
- <?php if ($this->user->hasProjectAccess('TaskModificationController', 'edit', $task['project_id'])): ?>
- <?= $this->render('task/dropdown', array('task' => $task)) ?>
- <?php else: ?>
- #<?= $task['id'] ?>
- <?php endif ?>
- </td>
- <td>
- <?= $this->text->e($task['swimlane_name']) ?>
- </td>
- <td>
- <?= $this->text->e($task['column_name']) ?>
- </td>
- <td>
- <?= $this->text->e($task['category_name']) ?>
- </td>
- <td>
- P<?= $this->text->e($task['priority'])?>
- </td>
- <td>
- <?= $this->url->link($this->text->e($task['title']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?>
- </td>
- <td>
- <?php if ($task['assignee_username']): ?>
- <?= $this->text->e($task['assignee_name'] ?: $task['assignee_username']) ?>
- <?php else: ?>
- <?= t('Unassigned') ?>
- <?php endif ?>
- </td>
- <td>
- <?= $this->dt->date($task['date_due']) ?>
- </td>
- <td>
- <?php if ($task['is_active'] == \Kanboard\Model\TaskModel::STATUS_OPEN): ?>
- <?= t('Open') ?>
- <?php else: ?>
- <?= t('Closed') ?>
- <?php endif ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
-
- <?= $paginator ?>
- <?php endif ?>
-</section>