.
This commit is contained in:
@@ -3,6 +3,15 @@
|
||||
{% block content %}
|
||||
|
||||
<h2>SeriesFinding Migration Status</h2>
|
||||
|
||||
<form method="get" class="mb-3">
|
||||
<label>
|
||||
<input type="checkbox" name="hide_no_series" value="1" {% if request.GET.hide_no_series %}checked{% endif %}>
|
||||
Hide findings with no series
|
||||
</label>
|
||||
<button type="submit" class="btn btn-sm btn-primary ms-2">Apply</button>
|
||||
</form>
|
||||
|
||||
<table class="table table-bordered table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -15,6 +24,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for f in findings_status %}
|
||||
{% if not request.GET.hide_no_series or f.series %}
|
||||
<tr>
|
||||
<td>{{ f.id }}</td>
|
||||
<td>{{ f.str }}</td>
|
||||
@@ -40,6 +50,7 @@
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user