.
This commit is contained in:
@@ -2,14 +2,6 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'atlas/collection_headers.html' %}
|
{% include 'atlas/collection_headers.html' %}
|
||||||
<ul>
|
|
||||||
{% for case_detail in case_details %}
|
|
||||||
<li>
|
|
||||||
{{case_detail.case.title}}
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for case_detail, answers in case_map.items %}
|
{% for case_detail, answers in case_map.items %}
|
||||||
@@ -18,7 +10,7 @@
|
|||||||
Answers
|
Answers
|
||||||
<ul>
|
<ul>
|
||||||
{% for answer in answers %}
|
{% 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 %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user