remove normalised scores when not required
This commit is contained in:
@@ -53,7 +53,9 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>Candidate ID</th>
|
<th>Candidate ID</th>
|
||||||
<th>Score</th>
|
<th>Score</th>
|
||||||
|
{% if exam.app_name == "longs" or exam.app_name == "rapids" %}
|
||||||
<th>Normalised Score</th>
|
<th>Normalised Score</th>
|
||||||
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
{% for cid in cids %}
|
{% for cid in cids %}
|
||||||
<tr class="candidate-row" data-answer-count={{user_answer_count|get_item:cid}}>
|
<tr class="candidate-row" data-answer-count={{user_answer_count|get_item:cid}}>
|
||||||
@@ -63,7 +65,10 @@
|
|||||||
<td><a href="{% url 'cid_scores_admin' cid|slice:'2:' %}">{{cid}}</a></td>
|
<td><a href="{% url 'cid_scores_admin' cid|slice:'2:' %}">{{cid}}</a></td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<td>{{user_scores|get_item:cid}}</td>
|
<td>{{user_scores|get_item:cid}}</td>
|
||||||
|
|
||||||
|
{% if exam.app_name == "longs" or exam.app_name == "rapids" %}
|
||||||
<td>{{user_scores_normalised|get_item:cid}}</td>
|
<td>{{user_scores_normalised|get_item:cid}}</td>
|
||||||
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user