This commit is contained in:
Ross
2021-12-18 20:29:20 +00:00
parent 68a4244dac
commit a7201caba2
@@ -31,11 +31,12 @@
<th>Score</th>
<th>Normalised Score</th>
</tr>
{% for user, value in user_answers_marks.items %}
{% comment %} {% for user, value in user_answers_marks.items %} {% endcomment %}
{% for cid in cids %}
<tr>
<td><a href="{% url 'cid_scores_admin' user %}">{{user}}</a></td>
<td>{{user_scores|get_item:user}}</td>
<td>{{user_scores_normalised|get_item:user}}</td>
<td><a href="{% url 'cid_scores_admin' cid %}">{{cid}}</a></td>
<td>{{user_scores|get_item:cid}}</td>
{% comment %} <td>{{user_scores_normalised|get_item:user}}</td> {% endcomment %}
</tr>
{% endfor %}
</table>