{% extends "base.html" %} {% block title %}Participation report — {{ student.name }}{% endblock %} {% block body %} {% if is_instructor_view %}
{% endif %}{{ student.name }}
Participation grade: {{ final_display }}
| Date | Answered | Assessment |
|---|---|---|
| {{ c.session_date.isoformat() }} | {{ "yes" if c.status == "answered" else "no (not present)" }} | {{ c.assessment or "—" }} |
You answered {{ row.asked }} of the {{ calls | length }} times your name was drawn.
Your grade depends only on the quality of your answers and on participation you missed by being unavailable. You are never penalized for how often the program happened to call on you, and the reason for any absence never enters the calculation.
{% endblock %}