{% extends "templates/base.html" %} {% from "www/macros/livecode.html" import LiveCodeEditorJS, LiveCodeEditor with context %} {% block title %}{{ course.title }} - Batch Dashboard{% endblock %} {% block head_include %} {% endblock %} {% block content %}
{{ widgets.BatchTabs(course=course, batch=batch) }}

Batch Progress

{% for exercise in report.exercises %}

Exercise {{exercise.index_label}}: {{exercise.title}}

{% for s in report.get_submissions_of_exercise(exercise.name) %}

{{s.owner.full_name}}

{{ LiveCodeEditor(name=s.name, code=s.solution, reset_code=s.solution) }}
{% endfor %}
{% endfor %}
{% endblock %} {%- block script %} {{ super() }} {{ LiveCodeEditorJS() }} {% endblock %}