blob: afff5e2b2272f98b96d18dbf437564174b83d856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<div class="tooltip-large">
<table class="table-small">
<tr>
<th class="column-70"><?= t('Subtask') ?></th>
<th><?= t('Assignee') ?></th>
</tr>
<?php foreach ($subtasks as $subtask): ?>
<tr>
<td>
<?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
</td>
<?= $this->hook->render('template:board:tooltip:subtasks:rows', array('subtask' => $subtask)) ?>
<td>
<?php if (! empty($subtask['username'])): ?>
<?= $this->text->e($subtask['name'] ?: $subtask['username']) ?>
<?php else: ?>
<?= t('Not assigned') ?>
<?php endif ?>
</td>
</tr>
<?php endforeach ?>
</table>
</div>
|