This commit is contained in:
Ross
2022-04-04 21:51:27 +01:00
parent 0e859cc344
commit df563283cd
@@ -10,8 +10,8 @@
Answers Answers
<ul> <ul>
{% for answer in answers %} {% for answer in answers %}
<li {% if not answer.score %}class="flagged"{% endif %}><a href="{% url 'atlas:collection_mark_question' collection.pk forloop.parentloop.counter0 %}">{{answer.answer}} <li {% if not answer.score %}class="flagged"{% endif %}>{{answer.answer}}
</a> {% if not answer.score %} {% if not answer.score %}
<span class="badge rounded-pill bg-danger">Unmarked</span> <span class="badge rounded-pill bg-danger">Unmarked</span>
@@ -21,6 +21,7 @@
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
<a href="{% url 'atlas:collection_mark_question' collection.pk forloop.parentloop.counter0 %}">Mark</a>
</div> </div>
{% endfor %} {% endfor %}