This commit is contained in:
Ross
2021-09-09 12:10:33 +01:00
parent ddb93d7964
commit 35d9d45b89
+2
View File
@@ -28,11 +28,13 @@
<tr> <tr>
<th>Candidate ID</th> <th>Candidate ID</th>
<th>Score</th> <th>Score</th>
<th>Normalised Score</th>
</tr> </tr>
{% for user, value in user_answers_marks.items %} {% for user, value in user_answers_marks.items %}
<tr> <tr>
<td><a href="{% url 'cid_scores' user %}">{{user}}</a></td> <td><a href="{% url 'cid_scores' user %}">{{user}}</a></td>
<td>{{user_scores|get_item:user}}</td> <td>{{user_scores|get_item:user}}</td>
<td>{{value}}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>