2014-11-23 20:13:38 +01:00
|
|
|
<?php if (! empty($subtasks)): ?>
|
|
|
|
<div id="subtasks" class="task-show-section">
|
|
|
|
|
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Sub-Tasks') ?></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="subtasks-table">
|
|
|
|
<tr>
|
2015-01-16 14:23:05 +01:00
|
|
|
<th class="column-40"><?= t('Title') ?></th>
|
2014-11-23 20:13:38 +01:00
|
|
|
<th><?= t('Assignee') ?></th>
|
|
|
|
<th><?= t('Time tracking') ?></th>
|
|
|
|
<?php if (! isset($not_editable)): ?>
|
|
|
|
<th><?= t('Actions') ?></th>
|
|
|
|
<?php endif ?>
|
|
|
|
</tr>
|
|
|
|
<?php foreach ($subtasks as $subtask): ?>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2014-12-22 19:15:38 +01:00
|
|
|
<?php if (! isset($not_editable)): ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
<?= $this->toggleSubtaskStatus($subtask, 'task') ?>
|
2014-12-22 19:15:38 +01:00
|
|
|
<?php else: ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
<?= $this->render('subtask/icons', array('subtask' => $subtask)) . $this->e($subtask['title']) ?>
|
2014-12-22 19:15:38 +01:00
|
|
|
<?php endif ?>
|
|
|
|
</td>
|
2014-11-23 20:13:38 +01:00
|
|
|
<td>
|
|
|
|
<?php if (! empty($subtask['username'])): ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
<?= $this->a($this->e($subtask['name'] ?: $subtask['username']), 'user', 'show', array('user_id' => $subtask['user_id'])) ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?php endif ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php if (! empty($subtask['time_spent'])): ?>
|
2015-01-16 14:23:05 +01:00
|
|
|
<strong><?= $this->e($subtask['time_spent']).'h' ?></strong> <?= t('spent') ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<?php if (! empty($subtask['time_estimated'])): ?>
|
2015-01-16 14:23:05 +01:00
|
|
|
<strong><?= $this->e($subtask['time_estimated']).'h' ?></strong> <?= t('estimated') ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?php endif ?>
|
|
|
|
</td>
|
|
|
|
<?php if (! isset($not_editable)): ?>
|
|
|
|
<td>
|
2015-01-16 14:23:05 +01:00
|
|
|
<ul>
|
2015-04-21 17:56:16 +02:00
|
|
|
<?php if ($subtask['position'] > 1): ?>
|
|
|
|
<li>
|
|
|
|
<?= $this->a(t('Move Up'), 'subtask', 'movePosition', array('project_id' => $project['id'], 'task_id' => $subtask['task_id'], 'subtask_id' => $subtask['id'], 'direction' => 'up'), true) ?>
|
|
|
|
</li>
|
|
|
|
<?php endif ?>
|
|
|
|
<?php if ($subtask['position'] != 0 && $subtask['position'] != count($subtasks)): ?>
|
|
|
|
<li>
|
|
|
|
<?= $this->a(t('Move Down'), 'subtask', 'movePosition', array('project_id' => $project['id'], 'task_id' => $subtask['task_id'], 'subtask_id' => $subtask['id'], 'direction' => 'down'), true) ?>
|
|
|
|
</li>
|
|
|
|
<?php endif ?>
|
2015-01-16 14:23:05 +01:00
|
|
|
<li>
|
|
|
|
<?= $this->a(t('Edit'), 'subtask', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id'])) ?>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<?= $this->a(t('Remove'), 'subtask', 'confirm', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id'])) ?>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2014-11-23 20:13:38 +01:00
|
|
|
</td>
|
|
|
|
<?php endif ?>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php if (! isset($not_editable)): ?>
|
2015-01-16 14:23:05 +01:00
|
|
|
<form method="post" action="<?= $this->u('subtask', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
|
|
|
|
<?= $this->formCsrf() ?>
|
|
|
|
<?= $this->formHidden('task_id', array('task_id' => $task['id'])) ?>
|
|
|
|
<?= $this->formText('title', array(), array(), array('required', 'placeholder="'.t('Type here to create a new sub-task').'"')) ?>
|
2014-11-23 20:13:38 +01:00
|
|
|
<input type="submit" value="<?= t('Add') ?>" class="btn btn-blue"/>
|
|
|
|
</form>
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|