11 lines
343 B
HTML
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 %} |