Skip to content

Commit

Permalink
filter order change for client
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmai-h committed Dec 1, 2023
1 parent 60cf578 commit 1710261
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/templates/cases.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ <h2>{% block title %}Cases{% endblock %}</h2>
<div class="form-check">
<input class="form-check-input" type="button" id="caseFilterUnset" value="Reset Filters" />
</div><br /><br />

<div class="form-check">
<input class="form-check-input caseFilter" type="checkbox" id="ASSIGNED">
<label class="form-check-label" for="ASSIGNED">ASSIGNED</label>
<input class="form-check-input caseFilter" type="checkbox" id="WAITING">
<label class="form-check-label" for="WAITING">WAITING</label>
</div>

<div class="form-check">
<input class="form-check-input caseFilter" type="checkbox" id="ASSIGNABLE">
<label class="form-check-label" for="ASSIGNABLE">ASSIGNABLE</label>
</div>

<div class="form-check">
<input class="form-check-input caseFilter" type="checkbox" id="WAITING">
<label class="form-check-label" for="WAITING">WAITING</label>
<input class="form-check-input caseFilter" type="checkbox" id="ASSIGNED">
<label class="form-check-label" for="ASSIGNED">ASSIGNED</label>
</div>

<div class="form-check">
<input class="form-check-input caseFilter" type="checkbox" id="LATE">
<label class="form-check-label" for="LATE">LATE</label>
Expand Down

0 comments on commit 1710261

Please sign in to comment.