* Finish task #5327.

This commit is contained in:
Yagami
2019-03-18 15:48:30 +08:00
parent 62249b0782
commit 7004af89d9
5 changed files with 18 additions and 2 deletions
+6
View File
@@ -109,6 +109,12 @@
<td><?php echo html::select('parent', $tasks, $task->parent, "class='form-control chosen'");?></td>
</tr>
<?php endif;?>
<?php if($task->parent > 0):?>
<tr>
<th><?php echo $lang->task->unlinkParent;?></th>
<td><?php echo html::checkbox('unlinkParent', '');?></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->task->assignedTo;?></th>
<td><span id="assignedToIdBox"><?php echo html::select('assignedTo', $members, $task->assignedTo, "class='form-control chosen'");?></span></td>