This commit is contained in:
Ross
2021-07-29 19:43:22 +01:00
parent 96ce2093bf
commit c374782acb
+1 -3
View File
@@ -42,12 +42,10 @@
{% for question in questions %}
<tr>
<td>Question {{forloop.counter}}</td>
{% for zipped_answers in by_question|get_item:question %}
{% for ans, score in by_question|get_item:question %}
<td>
<ol class="sbas-ans" style="list-style-type: lower-alpha;">
{% for ans, score in zipped_answers %}
<li class="user-answer-score-{{score}}" title="answer score: {{score}}">{{ans}}</li>
{% endfor %}
</ol>
</td>
{% endfor %}