2015-02-25 17:29:06 +01:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Time Tracking') ?></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<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>
|
2015-04-21 17:56:16 +02:00
|
|
|
<th class="column-25"><?= $subtask_paginator->order(t('Task'), 'task_title') ?></th>
|
|
|
|
<th class="column-25"><?= $subtask_paginator->order(t('Subtask'), 'subtask_title') ?></th>
|
|
|
|
<th class="column-20"><?= $subtask_paginator->order(t('Start'), 'start') ?></th>
|
|
|
|
<th class="column-20"><?= $subtask_paginator->order(t('End'), 'end') ?></th>
|
|
|
|
<th class="column-10"><?= $subtask_paginator->order(t('Time spent'), 'time_spent') ?></th>
|
2015-02-25 17:29:06 +01:00
|
|
|
</tr>
|
|
|
|
<?php foreach ($subtask_paginator->getCollection() as $record): ?>
|
|
|
|
<tr>
|
2015-08-16 17:04:56 +02:00
|
|
|
<td><?= $this->url->link($this->e($record['task_title']), 'task', 'show', array('project_id' => $record['project_id'], 'task_id' => $record['task_id'])) ?></td>
|
|
|
|
<td><?= $this->url->link($this->e($record['subtask_title']), 'task', 'show', array('project_id' => $record['project_id'], 'task_id' => $record['task_id'])) ?></td>
|
2015-02-25 17:29:06 +01:00
|
|
|
<td><?= dt('%B %e, %Y at %k:%M %p', $record['start']) ?></td>
|
|
|
|
<td><?= dt('%B %e, %Y at %k:%M %p', $record['end']) ?></td>
|
2015-04-21 17:56:16 +02:00
|
|
|
<td><?= n($record['time_spent']).' '.t('hours') ?></td>
|
2015-02-25 17:29:06 +01:00
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?= $subtask_paginator ?>
|
|
|
|
<?php endif ?>
|