This commit is contained in:
Ross
2022-06-26 19:19:35 +01:00
parent f454d5a08d
commit 1da7a8f2bb
2 changed files with 8 additions and 9 deletions
+4 -4
View File
@@ -34,9 +34,9 @@
{% for cid in cids %}
<tr>
{% if cid|slice:":1" == "u" %}
<td>{{cid}}</td>
<td>{{cids_user_id_map|get_item:cid}}</td>
{% else %}
<td><a href="{% url 'cid_scores_admin' cid %}">{{cid}}</a></td>
<td><a href="{% url 'cid_scores_admin' cid|slice:'2:' %}">{{cid}}</a></td>
{% endif %}
<td>{{user_scores|get_item:cid}}</td>
<td>{{user_scores_normalised|get_item:cid}}</td>
@@ -52,7 +52,7 @@
<th>Candidate</th>
{% for cid in cids %}
{% comment %} <th><a href="{% url 'rapids:exam_scores_cid_user' exam.pk cid %}">{{cid}}</a></th> {% endcomment %}
<th><a href="">{{cid}}</a></th>
<th><a href="">{{cids_user_id_map|get_item:cid}}</a></th>
{% endfor %}
</tr>
@@ -85,7 +85,7 @@
<ul>
{% for user, breakdown in user_answers_callstates.items %}
<li>
{{user}} - {{breakdown}}
{{cids_user_id_map|get_item:user}} - {{breakdown}}
</li>
{% endfor %}
</ul>