Files
penracourses/templates/exam_stats.html
T

11 lines
348 B
HTML

{% extends 'base.html' %}
{% block content %}
<h2>{{exam.name}}: 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 %}