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 %} {% for question in questions %}
<tr> <tr>
<td>Question {{forloop.counter}}</td> <td>Question {{forloop.counter}}</td>
{% for zipped_answers in by_question|get_item:question %} {% for ans, score in by_question|get_item:question %}
<td> <td>
<ol class="sbas-ans" style="list-style-type: lower-alpha;"> <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> <li class="user-answer-score-{{score}}" title="answer score: {{score}}">{{ans}}</li>
{% endfor %}
</ol> </ol>
</td> </td>
{% endfor %} {% endfor %}