diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | app/Template/task_list/show.php | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -3,6 +3,7 @@ Version 1.0.39 (unreleased) Improvements: +* Add priority column in list view * Change wording for project status (use "closed" instead of "inactive") * Prevent people to remove columns that contains tasks * Improve LDAP error reporting diff --git a/app/Template/task_list/show.php b/app/Template/task_list/show.php index 0518e4c3..4a2ebeba 100644 --- a/app/Template/task_list/show.php +++ b/app/Template/task_list/show.php @@ -10,6 +10,7 @@ <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> @@ -34,6 +35,9 @@ <?= $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> |