Account for no sessions
All checks were successful
Django CI/CD / build-and-push (push) Successful in 1m21s

This commit is contained in:
2023-11-16 20:29:08 +01:00
parent 912e010729
commit b7e14ecc83
2 changed files with 9 additions and 1 deletions

View File

@ -23,6 +23,7 @@
</div>
{% endif %}
{% if dataset.count != 0 %}
<table class="responsive-table">
<thead>
<tr>
@ -73,4 +74,7 @@
{% endfor %}
</tbody>
</table>
{% else %}
<div class="mx-auto text-center text-slate-300 text-xl">No sessions found.</div>
{% endif %}
{% endblock content %}