feat(web): add filtering only selected items in list

This commit is contained in:
2023-01-29 20:20:10 +03:00
parent 351e0be3ca
commit 733780c17c
5 changed files with 28 additions and 2 deletions
+5 -1
View File
@@ -50,7 +50,11 @@
<input type="text" name="filter" class="form-control" id="filter">
</div>
</div>
<div class="form-group list" style="height: calc(100vh - 290px)"></div>
<div class="form-group form-check">
<input type="checkbox" name="related" class="form-check-input" id="selected" checked>
<label class="form-check-label" for="selected">Show only selected</label>
</div>
<div class="form-group list" style="height: calc(100vh - 330px)"></div>
<div class="form-group button-flex">
<button class="btn btn-primary" id="btn-confirm">Confirm</button>
<a target="_blank" class="btn btn-outline-info" id="btn-full">View full</a>
+5 -1
View File
@@ -44,7 +44,11 @@
<input type="text" name="name" class="form-control" id="name">
</div>
</div>
<div class="form-group list" style="height: calc(100vh - 230px)"></div>
<div class="form-group form-check">
<input type="checkbox" name="related" class="form-check-input" id="selected" checked>
<label class="form-check-label" for="selected">Show only selected</label>
</div>
<div class="form-group list" style="height: calc(100vh - 270px)"></div>
<div class="form-group button-flex">
<button class="btn btn-primary" id="btn-confirm">Confirm</button>
<button class="btn btn-outline-danger" id="btn-close">Close</button>