Added Ticket Priority, field ticket_priority added to ticket table, New DB Sructure Dump

This commit is contained in:
johnny@pittpc.com
2021-01-22 18:06:42 -05:00
parent 18c9038955
commit d30481d506
7 changed files with 44 additions and 9 deletions

View File

@@ -11,6 +11,20 @@
<input type="hidden" name="ticket_id" value="<?php echo $ticket_id; ?>">
<div class="modal-body bg-white">
<div class="form-group">
<label>Priority <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-thermometer-half"></i></span>
</div>
<select class="form-control select2" name="priority" required>
<option <?php if($ticket_priority == 'Low'){ echo "selected"; } ?> >Low</option>
<option <?php if($ticket_priority == 'Medium'){ echo "selected"; } ?> >Medium</option>
<option <?php if($ticket_priority == 'High'){ echo "selected"; } ?> >High</option>
</select>
</div>
</div>
<div class="form-group">
<label>Subject <strong class="text-danger">*</strong></label>
<div class="input-group">