blob: 5c273e0804559ff9755b544ea6699e615dc05cf4 (
plain)
1
2
3
4
5
6
7
|
<section id="tooltip-subtasks">
<?php foreach ($subtasks as $subtask): ?>
<?= $this->subtask->toggleStatus($subtask, 'board', $task['project_id']) ?>
<?= $this->e(empty($subtask['username']) ? '' : ' ['.$this->user->getFullname($subtask).']') ?>
<br/>
<?php endforeach ?>
</section>
|