Feature: Added the ability to edit the order of the tasks this is not the best solution but works we recommend setting them in orders of 5 or 10 so there is wiggle room to add tasks in between

This commit is contained in:
johnnyq
2024-06-03 19:36:16 -04:00
parent 1076ffb5f7
commit 8bc7c849ef
4 changed files with 17 additions and 6 deletions

View File

@@ -23,6 +23,16 @@
<input type="text" class="form-control" name="name" placeholder="Name the task" value="<?php echo $task_name; ?>" required autofocus>
</div>
</div>
<div class="form-group">
<label>Order</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-sort-numeric-down"></i></span>
</div>
<input type="number" class="form-control" name="order" placeholder="Order" value="<?php echo $task_order; ?>">
</div>
</div>
</div>