{% extends "base.html" %} {% load url %} {% load user_profile_link from profiles %} {% load naturaldelta %} {% load guardian_tags %} {% block title %}Viewer Container Image - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Viewer Container Image

ID
{{ object.pk }}
Viewer
{{ object.workstation.title }}
Creator
{{ object.creator|user_profile_link }}
Created
{{ object.created }}
{% if object.image %}
Image
{{ object.image.name }}
Image Size
{{ object.image.size|naturalsize }}
{% endif %} {% if object.image_sha256 %}
Image SHA256
{{ object.image_sha256 }}
{% endif %}
Import Status
{% if object.animate %} {% endif %} {{ object.get_import_status_display }}
{% if object.is_manifest_valid is not None %}
Image Is Valid
{{ object.is_manifest_valid }}
{% endif %} {% if object.status %}
Validation Errors
{{ object.status }}
{% endif %}
Image Can Be Used
{{ object.can_execute }}
Initial Path
{{ object.initial_path }}
HTTP Port
{{ object.http_port }}
Websocket Port
{{ object.websocket_port }}
Comment
{{ object.comment }}
{% get_obj_perms request.user for object as "image_perms" %} {% if "change_workstationimage" in image_perms %}

Edit the image settings {% if object.is_desired_version %} Move image to another Viewer {% endif %}

{% endif %}

Sessions For This Image

{% endblock %}