{% extends "base.html" %} {% load crispy_forms_tags %} {% load url %} {% load workstations %} {% load pathlib %} {% load static %} {% block title %}Upload Session {{ object.pk }} - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Upload Session

{% if object.error_message %}
{{ object.error_message }}
{% endif %}
Created
{{ object.created }}
ID
{{ object.pk }}
Status
{{ object.get_status_display }}

Uploaded Files

{% for file, errors in object.import_result.file_errors.items %} {% endfor %} {% for file in object.import_result.consumed_files %} {% endfor %}
{{ file }} We could not import this file using any image builder, the error for each image builder is:
    {% for error in errors %}
  • {{ error }}
  • {% endfor %}
{{ file }} Imported successfully
{% if object.status == object.SUCCESS %}

Images

{% for image in object.image_set.all %} {% endfor %}
{{ image.name }} {{ image.shape_without_color|join:"x" }}
{% if not object.image_set.all %}
No images imported.
{% endif %} {% endif %} {% endblock %} {% block script %} {{ block.super }} {% include 'workstations/partials/session-control.html' %} {% endblock %}