This commit is contained in:
Ross
2022-03-21 16:49:04 +00:00
parent 15aa29533b
commit 7577a031c1
4 changed files with 32 additions and 0 deletions
@@ -0,0 +1,9 @@
{% extends 'atlas/base.html' %}
{% block content %}
<ul>
{% for case in collection %}
<li>{{case.title}}: {{case.descriptions}}</li>
{% endfor %}
</ul>
{% endblock %}
@@ -0,0 +1,9 @@
{% extends 'atlas/base.html' %}
{% block content %}
<ul>
{% for collection in collections %}
<li>{{collection.name}}</li>
{% endfor %}
</ul>
{% endblock %}