{% if data.task %}
Summary
{% else %}
{{ task.name }}
{% endif %}
Container: {{ task.container.name }} {% if task.container.type == 'docker' %}{% endif %} {% if task.container.type == 'singularity' %}{% endif %}
Computing: {{ task.computing.name }}
{% if task.status == "running" %} Status: running {% else %} Status: {{ task.status }} {% endif %}
{% if task.status == "stopped" or task.status == "created" %} Delete {% else %} Stop {% endif %} {% if task.interface_port %} {% if task.status == "running" %} Connect {% else %} Connect {% endif %} {% endif %} {% if task.status == "running" %} Logs {% else %} Logs {% endif %}
{% if data.task %}
{% if task.auth_token %} {% endif %}
Details
ID {{ task.id }}
Image {{ task.container.image }}
Created at {{ task.created }}
Extra binds {{ task.extra_binds }}
Host {{ task.ip }}
Port {{ task.port }}
Tunnel port {{ task.tcp_tunnel_port }}
Auth token {{ task.auth_token }}
Sharable link {% if task.status == "running" %}{{ task.sharable_link }}{% else %}N.A. (task not running) {% endif %}

You can share a direct link with other people, but remember that if you have no authentication in place anyone will be able to access.

{% endif %}