{% extends "base.html" %} {% block title %}Live — {{ course.title or "Cold Call" }}{% endblock %} {% block body %}

← back

Live cold call — {{ day.isoformat() }}

{{ present_count }} of {{ roster_count }} students available ({{ optout_count }} opted out).

{% if call %}
{% if call.student.avatar_url %} {% endif %}

{{ call.student.name }}

{% if call.student.sortable_name %}

{{ call.student.sortable_name }}

{% endif %}
{% for a in assessments %} {% endfor %}
{% elif present_count > 0 %}
{% else %}

No students available to call.

{% endif %} {% if day_calls %}

Calls so far today

{% for c in day_calls %} {% endfor %}
#StudentOutcome
{{ loop.index }} {{ c.student.name }} {{ c.assessment or c.status }}
{% endif %} {% endblock %}