{% extends 'autodidact/session_base.html' %}
{% block content %}
{% if student_attends %}
Remove this student from class
{% else %}
This student is not registered for {{session}}
{% endif %}
The progress of {% include 'autodidact/include/student_name.html' %}:
{% include 'autodidact/include/progress.html' %}
The answers of {% include 'autodidact/include/student_name.html' %}:
{% include 'autodidact/include/answers.html' %}
{% endblock %}