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

← back to grades

Gradebook push results

{% for o in outcomes %} {% endfor %}
StudentResult
{{ o.name }} {{ "✓" if o.ok else "FAILED:" }} {{ o.detail }}

{{ outcomes | selectattr("ok") | list | length }} of {{ outcomes | length }} pushed successfully.

{% endblock %}