Files
Kanboard-Prod/app/Template/board/tooltip_subtasks.php
Frederic Guillot 8f3e2b2e5c Helper refactoring
2016-03-04 20:10:34 -05:00

15 lines
440 B
PHP

<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->text->e($subtask['name'] ?: $subtask['username']) ?>
<?php endif ?>
</td>
</tr>
<?php endforeach ?>
</table>