{% extends 'base.html' %} {% block title %} Batch Test Results{{ block.super }} {% endblock %} {% block content %}

Batch Test Upload Results

{% if result == 'abort' %}

User aborted batch upload, all temporary files have been deleted.

{% elif result == 'completed' %}

Already completed, you must upload a new batch zip file.

{% endif %} {% if result_data %} {% for model, case, testID, rating in result_data %} {% endfor %}
Model Case Test ID2 Rating
{{ model }} {{ case }} {{ testID }} {{ rating }}
{% endif %}
Return to account menu {% endblock %}