mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
27 lines
No EOL
1.3 KiB
PHP
27 lines
No EOL
1.3 KiB
PHP
<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>
|
|
<th class="column-20"><?= $subtask_paginator->order(t('Task'), 'task_title') ?></th>
|
|
<th class="column-20"><?= $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['task_title']), 'task', 'show', array('project_id' => $record['project_id'], 'task_id' => $record['task_id'])) ?></td>
|
|
<td><?= $this->a($this->e($record['subtask_title']), 'task', 'show', array('project_id' => $record['project_id'], 'task_id' => $record['task_id'])) ?></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 ?>
|