diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-22 13:37:06 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-22 13:37:06 -0500 |
commit | a1923d3d7f9276e859d6fd6bee339f0ea00f6544 (patch) | |
tree | 84caca943de5d0e016455ea2f6896d0b697fdf05 /templates/project_tasks.php | |
parent | fd28d50597d4f255ba9514e0fc03c8cb67c86f22 (diff) |
Add a page to display completed tasks and add the completion date column for tasks
Diffstat (limited to 'templates/project_tasks.php')
-rw-r--r-- | templates/project_tasks.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/templates/project_tasks.php b/templates/project_tasks.php new file mode 100644 index 00000000..ed244c34 --- /dev/null +++ b/templates/project_tasks.php @@ -0,0 +1,52 @@ +<section id="main"> + <div class="page-header"> + <h2><?= t('Completed tasks for "%s"', $project['name']) ?><span id="page-counter"> (<?= $nb_tasks ?>)</span></h2> + <ul> + <li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li> + <li><a href="?controller=project&action=index"><?= t('List of projects') ?></a></li> + <?php if ($_SESSION['user']['is_admin'] == 1): ?> + <li><a href="?controller=project&action=create"><?= t('New project') ?></a></li> + <?php endif ?> + </ul> + </div> + <section> + <?php if (empty($tasks)): ?> + <p class="alert"><?= t('No task') ?></p> + <?php else: ?> + <table> + <tr> + <th><?= t('Id') ?></th> + <th><?= t('Column') ?></th> + <th><?= t('Title') ?></th> + <th><?= t('Assignee') ?></th> + <th><?= t('Date created') ?></th> + <th><?= t('Date completed') ?></th> + </tr> + <?php foreach ($tasks as $task): ?> + <tr> + <td class="task task-<?= $task['color_id'] ?>"> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['id']) ?></a> + </td> + <td> + <?= Helper\escape($task['column_title']) ?> + </td> + <td> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a> + </td> + <td> + <?= Helper\escape($task['username']) ?> + </td> + <td> + <?= dt('%B %e, %G at %k:%M %p', $task['date_creation']) ?> + </td> + <td> + <?php if ($task['date_completed']): ?> + <?= dt('%B %e, %G at %k:%M %p', $task['date_completed']) ?> + <?php endif ?> + </td> + </tr> + <?php endforeach ?> + </table> + <?php endif ?> + </section> +</section>
\ No newline at end of file |