{% extends "base.html" %} {% load projecttags %} {% load bootstrap %} {% block title %} {{ block.super }} - Test Machine Details {% endblock %} {% block content %}

Current job queue

{% if queue %} {% for subm in queue %} {% endfor %}
# Course Assignment Authors Status Execution started
{{ forloop.counter }} {{ subm.assignment.course }} {{ subm.assignment }} {{ subm.authors.all|join:", " }} {{ subm.state_for_students }} {{ subm.file_upload.fetched|default_if_none:"-" }}
{% else %}

Nothing to do for students.

{% endif %} {% if additional %}

There are {{ additional }} additional jobs being queued.

{% endif %}

{{ machine }}

{% for title, text in config %}
{{ title }}
{{ text|linebreaksbr }}
{% endfor %}

Last contact: {{ machine.last_contact }}

{% endblock %}