FEATURE: Added Task Completion Estimate to the UI

This commit is contained in:
johnnyq
2024-10-23 14:06:41 -04:00
parent dffc97859d
commit 636c74dbb0
4 changed files with 40 additions and 13 deletions

View File

@@ -33,6 +33,16 @@
<input type="number" class="form-control" name="order" placeholder="Order" value="<?php echo $task_order; ?>">
</div>
</div>
<div class="form-group">
<label>Estimated Completion Time <span class="text-secondary">(Minutes)</span></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-clock"></i></span>
</div>
<input type="number" class="form-control" name="completion_estimate" placeholder="Estimated time to complete task in mins" value="<?php echo $task_completion_estimate; ?>">
</div>
</div>
</div>