This commit is contained in:
Ross
2021-12-17 18:13:07 +00:00
parent 8eed0fc46b
commit 3b3f7df0d7
4 changed files with 13 additions and 7 deletions
+6 -6
View File
@@ -23,7 +23,7 @@
</tr>
{% for user, value in user_answers_marks.items %}
<tr>
<td><a href="{% url 'cid_scores' user %}">{{user}}</a></td>
<td><a href="{% url 'cid_scores_admin' user %}">{{user}}</a></td>
<td>{{user_scores|get_item:user}}</td>
</tr>
{% endfor %}
@@ -33,11 +33,11 @@
<h3>Answers as a table</h3>
<table class="table table-dark table-striped table-hover table-sm">
<thead class="thead-dark">
<tr>
<th>Candidate</th>
{% for cid in cids %}
<th>{{cid}}</th>
{% endfor %}
<tr>
<th>Candidate</th>
{% for cid in cids %}
<th>{{cid}}</th>
{% endfor %}
</thead>
</tr>
{% for question in questions %}