diff options
Diffstat (limited to 'templates/project_search.php')
-rw-r--r-- | templates/project_search.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/project_search.php b/templates/project_search.php index ee1e5025..3594fd09 100644 --- a/templates/project_search.php +++ b/templates/project_search.php @@ -28,6 +28,7 @@ <tr> <th><?= t('Id') ?></th> <th><?= t('Column') ?></th> + <th><?= t('Category') ?></th> <th><?= t('Title') ?></th> <th><?= t('Assignee') ?></th> <th><?= t('Due date') ?></th> @@ -44,6 +45,9 @@ <?= Helper\in_list($task['column_id'], $columns) ?> </td> <td> + <?= Helper\in_list($task['category_id'], $categories, '') ?> + </td> + <td> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> <div class="task-table-icons"> <?php if (! empty($task['nb_comments'])): ?> |