Do not refresh the whole page when changing subtask status (work in progress)
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
<section id="tooltip-subtasks">
|
||||
<table class="table-stripped">
|
||||
<?php foreach ($subtasks as $subtask): ?>
|
||||
<?= $this->subtask->toggleStatus($subtask, 'board', $task['project_id']) ?>
|
||||
<?= $this->e(empty($subtask['username']) ? '' : ' ['.$this->user->getFullname($subtask).']') ?>
|
||||
<br>
|
||||
<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 ?>
|
||||
</section>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user