summaryrefslogtreecommitdiff
path: root/templates/project_tasks.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project_tasks.php')
-rw-r--r--templates/project_tasks.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/project_tasks.php b/templates/project_tasks.php
index d54565f3..1ffd52ac 100644
--- a/templates/project_tasks.php
+++ b/templates/project_tasks.php
@@ -3,10 +3,8 @@
<h2><?= t('Completed tasks for "%s"', $project['name']) ?><span id="page-counter"> (<?= $nb_tasks ?>)</span></h2>
<ul>
<li><a href="?controller=board&amp;action=show&amp;project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li>
+ <li><a href="?controller=project&amp;action=search&amp;project_id=<?= $project['id'] ?>"><?= t('Search') ?></a></li>
<li><a href="?controller=project&amp;action=index"><?= t('List of projects') ?></a></li>
- <?php if (Helper\is_admin()): ?>
- <li><a href="?controller=project&amp;action=create"><?= t('New project') ?></a></li>
- <?php endif ?>
</ul>
</div>
<section>
@@ -19,6 +17,7 @@
<th><?= t('Column') ?></th>
<th><?= t('Title') ?></th>
<th><?= t('Assignee') ?></th>
+ <th><?= t('Due date') ?></th>
<th><?= t('Date created') ?></th>
<th><?= t('Date completed') ?></th>
</tr>
@@ -34,7 +33,14 @@
<a href="?controller=task&amp;action=show&amp;task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a>
</td>
<td>
- <?= Helper\escape($task['username']) ?>
+ <?php if ($task['username']): ?>
+ <?= Helper\escape($task['username']) ?>
+ <?php else: ?>
+ <?= t('Unassigned') ?>
+ <?php endif ?>
+ </td>
+ <td>
+ <?= dt('%B %e, %G', $task['date_due']) ?>
</td>
<td>
<?= dt('%B %e, %G at %k:%M %p', $task['date_creation']) ?>