doorcontrol: Improve responsiveness of form controls and table in reports

This commit is contained in:
Adam Goldsmith 2023-12-06 21:34:25 -05:00
parent e03b9e3c70
commit 017aea4b3e

View File

@ -2,7 +2,7 @@
{% block title %}{{ selected_report }} | Door Controls | CMS{% endblock %}
{% block content %}
<div class="d-flex flex-column align-items-center">
<div class="vstack align-items-center">
<ul class="nav nav-tabs">
{% for report_name, report_url in report_types %}
<li class="nav-item">
@ -11,8 +11,10 @@
</li>
{% endfor %}
</ul>
<form method="get" class="form-floating m-2 d-flex align-items-center">
<div class="form-floating mx-2">
<form method="get" class="container">
<div class="row align-items-center">
<div class="col gy-1">
<div class="form-floating">
<input type="date"
class="form-control"
id="startDate"
@ -20,7 +22,9 @@
value="{{ timestamp__gte|date:'Y-m-d' }}">
<label for="startDate">Start Date</label>
</div>
<div class="form-floating mx-2">
</div>
<div class="col gy-1">
<div class="form-floating">
<input type="date"
class="form-control"
id="endDate"
@ -28,7 +32,9 @@
value="{{ timestamp__lte|date:'Y-m-d' }}">
<label for="endDate">End Date</label>
</div>
<div class="form-floating mx-1">
</div>
<div class="col-md gy-1">
<div class="form-floating">
<input type="number"
class="form-control"
id="itemsPerPage"
@ -40,9 +46,16 @@
required>
<label for="itemsPerPage">Items Per Page</label>
</div>
<button type="submit" class="btn btn-primary mx-2">Submit</button>
<a href="?" class="btn btn-warning mx-1">Reset</a>
</div>
<div class="col-6 col-md-auto gy-1">
<button type="submit" class="btn btn-primary w-100">Submit</button>
</div>
<div class="col-6 col-md-auto gy-1">
<a href="?" class="btn btn-warning w-100">Reset</a>
</div>
</div>
</form>
<div class="table-responsive mw-100">
<table class="table table-striped table-hover mb-2 w-auto">
<thead>
<tr>
@ -57,6 +70,7 @@
{% endfor %}
</tbody>
</table>
</div>
<nav aria-label="Page navigation">
<div class="text-center mb-2">Showing {{ page_obj.object_list|length }} of {{ paginator.count }} results.</div>
<ul class="pagination justify-content-center">