{% extends "base.html" %} {% block title %}Participation report — {{ student.name }}{% endblock %} {% block body %} {% if is_instructor_view %}

← back to grades

{% endif %}

Case discussion participation report

{{ student.name }}

Participation grade: {{ final_display }}

When you were called, and how it was assessed

{% for c in calls %} {% endfor %}
DateAnsweredAssessment
{{ 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.

How your grade was computed

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 %}