{% extends "base.html" %} {% block title %}Call list {{ day.isoformat() }}{% endblock %} {% block body %}

← back · edit outcomes

{{ course.title or course.lti_context_id }} — {{ day.isoformat() }}

{% if not has_pending %}

No call list has been generated for this day yet {%- if day_calls %} (the rows below are calls already recorded) {%- endif %}.

{% endif %}
{% if day_calls %} {% for c in day_calls %} {% endfor %}
#StudentNotes
{{ loop.index }} {% if c.student.avatar_url %} {% endif %} {{ c.student.name }} {% if c.student.pronouns %} {{ c.student.pronouns }} {% endif %} {% if c.student.sortable_name and c.student.sortable_name != c.student.name %} ({{ c.student.sortable_name }}) {% endif %} {% if c.status != "pending" %} {{ c.assessment or c.status }} {% endif %}
{% else %}

No calls generated for this day yet.

{% endif %} {% endblock %}