This commit is contained in:
Ross
2021-01-03 17:36:17 +00:00
parent 67996ad9a9
commit 69f5e6f6b5
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -47,8 +47,8 @@
{% for question in questions %}
<tr>
<td>Question {{forloop.counter}}</td>
{% for ans in by_question|get_item:question %}
<td>{{ans}}</td>
{% for ans, score in by_question|get_item:question %}
<td class="user-answer {{score}}">{{ans}} {{score}}</td>
{% endfor %}
</tr>
{% endfor %}