{% extends "base.html" %} {% block content %}
{% for i, r in summary.iterrows() %} {% if r['duplicate'] %} {% else %} {% endif %} {% endfor %}
Student ID Last Name First Name Score Max Score Patches Checksum Archive
{{ r['student_id'] }} {{ r['student_id'] }}{{ r['last_name'] }} {{ r['first_name'] }} {{ r['score'] }} {{ r['max_score'] }} {{ r['patches'] }} {{ hash(r['notebook_id']) }} {{ r['archive'] }}
{% for plot in plots %}

{{ plot.title }}

{% if plot.data %} score distribution {% else %}

Not available

{% endif %}
{% endfor %}
{% endblock %}