This commit is contained in:
Ross
2025-06-10 07:09:58 +01:00
parent 13e6bc37b8
commit 394ef2196e
@@ -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,31 +24,33 @@
</thead>
<tbody>
{% for f in findings_status %}
<tr>
<td>{{ f.id }}</td>
<td>{{ f.str }}</td>
<td>
{% if f.series %}
<a href="{% url 'atlas:series_detail' f.series.pk %}">{{ f.series }}</a>
{% else %}
<span class="text-muted">None</span>
{% endif %}
</td>
<td>
{% if f.annotation_json_3d %}
<span class="badge bg-success">Populated</span>
{% else %}
<span class="badge bg-danger">Empty</span>
{% endif %}
</td>
<td>
{% if f.viewer_state_3d %}
<span class="badge bg-success">Populated</span>
{% else %}
<span class="badge bg-danger">Empty</span>
{% endif %}
</td>
</tr>
{% if not request.GET.hide_no_series or f.series %}
<tr>
<td>{{ f.id }}</td>
<td>{{ f.str }}</td>
<td>
{% if f.series %}
<a href="{% url 'atlas:series_detail' f.series.pk %}">{{ f.series }}</a>
{% else %}
<span class="text-muted">None</span>
{% endif %}
</td>
<td>
{% if f.annotation_json_3d %}
<span class="badge bg-success">Populated</span>
{% else %}
<span class="badge bg-danger">Empty</span>
{% endif %}
</td>
<td>
{% if f.viewer_state_3d %}
<span class="badge bg-success">Populated</span>
{% else %}
<span class="badge bg-danger">Empty</span>
{% endif %}
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>