This commit is contained in:
Ross
2022-04-04 14:40:07 +01:00
parent a548102c2a
commit 4be127f0ae
@@ -2,14 +2,6 @@
{% block content %}
{% include 'atlas/collection_headers.html' %}
<ul>
{% for case_detail in case_details %}
<li>
{{case_detail.case.title}}
</li>
{% endfor %}
</ul>
<ul>
{% for case_detail, answers in case_map.items %}
@@ -18,7 +10,7 @@
Answers
<ul>
{% for answer in answers %}
<li><a href="{% url 'atlas:collection_mark_question' collection.pk forloop.counter0 %}">{{answer.answer}}: {{answer.score}}</a></li>
<li {% if not answer.score %}class="flagged"{% endif %}><a href="{% url 'atlas:collection_mark_question' collection.pk forloop.counter0 %}">{{answer.answer}}: {{answer.score}}</a></li>
{% endfor %}
</ul>
</li>