Add priority column in list view
This commit is contained in:
@@ -3,6 +3,7 @@ Version 1.0.39 (unreleased)
|
|||||||
|
|
||||||
Improvements:
|
Improvements:
|
||||||
|
|
||||||
|
* Add priority column in list view
|
||||||
* Change wording for project status (use "closed" instead of "inactive")
|
* Change wording for project status (use "closed" instead of "inactive")
|
||||||
* Prevent people to remove columns that contains tasks
|
* Prevent people to remove columns that contains tasks
|
||||||
* Improve LDAP error reporting
|
* Improve LDAP error reporting
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
<th class="column-10"><?= $paginator->order(t('Swimlane'), 'tasks.swimlane_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('Column'), 'tasks.column_id') ?></th>
|
||||||
<th class="column-10"><?= $paginator->order(t('Category'), 'tasks.category_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><?= $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('Assignee'), 'users.username') ?></th>
|
||||||
<th class="column-10"><?= $paginator->order(t('Due date'), 'tasks.date_due') ?></th>
|
<th class="column-10"><?= $paginator->order(t('Due date'), 'tasks.date_due') ?></th>
|
||||||
@@ -33,6 +34,9 @@
|
|||||||
<td>
|
<td>
|
||||||
<?= $this->text->e($task['category_name']) ?>
|
<?= $this->text->e($task['category_name']) ?>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
P<?= $this->text->e($task['priority'])?>
|
||||||
|
</td>
|
||||||
<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')) ?>
|
<?= $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>
|
||||||
|
|||||||
Reference in New Issue
Block a user