diff --git a/ChangeLog b/ChangeLog
index 0fe1f328c..bd3f49491 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 0518e4c3a..4a2ebeba7 100644
--- a/app/Template/task_list/show.php
+++ b/app/Template/task_list/show.php
@@ -10,6 +10,7 @@
= $paginator->order(t('Swimlane'), 'tasks.swimlane_id') ?> |
= $paginator->order(t('Column'), 'tasks.column_id') ?> |
= $paginator->order(t('Category'), 'tasks.category_id') ?> |
+ = $paginator->order(t('Priority'), \Kanboard\Model\TaskModel::TABLE.'.priority') ?> |
= $paginator->order(t('Title'), 'tasks.title') ?> |
= $paginator->order(t('Assignee'), 'users.username') ?> |
= $paginator->order(t('Due date'), 'tasks.date_due') ?> |
@@ -33,6 +34,9 @@
= $this->text->e($task['category_name']) ?>
|
+
+ P= $this->text->e($task['priority'])?>
+ |
= $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')) ?>
|