Files
2024-07-08 09:52:01 +01:00

11 lines
343 B
HTML

{% extends 'base.html' %}
{% block content %}
<h2>{{exam}}: Stats</h2>
{% if exam.stats_candidates < 4 %}
Not enough data points...
{% else %}
{% include "exam_stats_block.html" %}
<p class="small-gray">Note: scores < 10% of the total score are excluded from these statistics
{% endif %}
{% endblock %}