diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-10 22:10:32 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-10 22:10:32 -0500 |
commit | efbf679385773e76cbb436691f63e931c17172d4 (patch) | |
tree | e2d15b3a0afa15e2a5532ad8f2d2c110665ffb98 /app/Template/task/time_tracking.php | |
parent | 57613d18539a2cf5970dcc0c4f50e023df9eea73 (diff) |
Add subtask time tracking in the task view
Diffstat (limited to 'app/Template/task/time_tracking.php')
-rw-r--r-- | app/Template/task/time_tracking.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/Template/task/time_tracking.php b/app/Template/task/time_tracking.php new file mode 100644 index 00000000..6e86df91 --- /dev/null +++ b/app/Template/task/time_tracking.php @@ -0,0 +1,25 @@ +<?= $this->render('task/timesheet', array('task' => $task)) ?> + +<h3><?= t('Subtask timesheet') ?></h3> +<?php if ($subtask_paginator->isEmpty()): ?> + <p class="alert"><?= t('There is nothing to show.') ?></p> +<?php else: ?> + <table class="table-fixed"> + <tr> + <th class="column-20"><?= $subtask_paginator->order(t('User'), 'username') ?></th> + <th class="column-40"><?= $subtask_paginator->order(t('Subtask'), 'subtask_title') ?></th> + <th><?= $subtask_paginator->order(t('Start'), 'start') ?></th> + <th><?= $subtask_paginator->order(t('End'), 'end') ?></th> + </tr> + <?php foreach ($subtask_paginator->getCollection() as $record): ?> + <tr> + <td><?= $this->a($this->e($record['user_fullname'] ?: $record['username']), 'user', 'show', array('user_id' => $record['user_id'])) ?></td> + <td><?= t($record['subtask_title']) ?></td> + <td><?= dt('%B %e, %Y at %k:%M %p', $record['start']) ?></td> + <td><?= dt('%B %e, %Y at %k:%M %p', $record['end']) ?></td> + </tr> + <?php endforeach ?> + </table> + + <?= $subtask_paginator ?> +<?php endif ?>
\ No newline at end of file |