{% extends "base.html" %} {% load crispy_forms_tags %} {% load grandchallenge_tags %} {% load workstations %} {% block content %}

Session state

Job id: {{ upload_session.processing_task }}

State: {{ upload_session.session_state }}

Error message: {{ upload_session.error_message }}

Creation date: {{ upload_session.created }}

{% if process_finished %}

Processed files

{% for raw_file in raw_files %} {% endfor %}
{{ raw_file.filename }} {% if raw_file.error %} {{ raw_file.error }} {% else %} {{ "succeeded" }} {% endif %}

Images

{% for image in images %} {% endfor %}
{{ image.name }} {{ image.shape_without_color|join:"x" }} Show image in workstation {% if ".tif" in image.name %} Show image in browser {% endif %}
{% endif %} {% endblock %}