This commit is contained in:
Ross
2022-04-02 23:30:33 +01:00
parent 36eefe9784
commit 28c6d5ae5e
2 changed files with 41 additions and 3 deletions
@@ -0,0 +1,14 @@
{% extends 'atlas/base.html' %}
{% block content %}
{% include 'atlas/collection_headers.html' %}
<ul>
{% for case_detail in case_details %}
<li>
{{case_detail.title}}
</li>
{% endfor %}
</ul>
{% endblock %}