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