blob: 65b7ce4d62b6bc7928d2c9af8ac42107af212190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<table class="table-stripped">
<?php foreach ($subtasks as $subtask): ?>
<tr>
<td class="column-80">
<?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
</td>
<td>
<?= $this->e($subtask['username'] ?: $this->user->getFullname($subtask)) ?>
</td>
</tr>
<?php endforeach ?>
</table>
|