{% 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 %}
- Uploads
- {{ object.pk }}
{% 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 %}
|
{{ file }} |
We could not import this file using any image builder,
the error for each image builder is:
{% for error in errors %}
- {{ error }}
{% endfor %}
|
{% endfor %}
{% for file in object.import_result.consumed_files %}
|
{{ file }} |
Imported successfully |
{% endfor %}
{% if object.status == object.SUCCESS %}
Images
{% for image in object.image_set.all %}
| {{ image.name }} |
{{ image.shape_without_color|join:"x" }} |
|
|
{% endfor %}
{% if not object.image_set.all %}
No images imported.
{% endif %}
{% endif %}
{% endblock %}
{% block script %}
{{ block.super }}
{% include 'workstations/partials/session-control.html' %}
{% endblock %}