{% extends "base.html" %} {% block title %}Add Dicom Endpoint{% endblock %} {% block content %}

{{ endpoint.endpointName }}

{% if endpoint.endpointType == 'retriever' %}Retrieving Endpoint{% endif %} {% if endpoint.endpointType == 'listener' %}Listening Endpoint{% endif %}
{{ endpoint.endpointAlgorithm }}
{% if endpoint.settings %}

Settings:


{{ format_settings(endpoint.settings) }}
{% endif %} {% if endpoint.endpointType == 'retriever' %}

Fetch data from:
Host: {{endpoint.fromHost}}
Port: {{endpoint.fromPort}}
AE Title: {{endpoint.fromAETitle}}

{% endif %} {% if endpoint.endpointType == 'listener' %}

Listen on:
Port: {{endpoint.fromPort}}

{% endif %}

Send results to:
Host: {{endpoint.toHost}}
Port: {{endpoint.toPort}}
AE Title: {{endpoint.toAETitle}}

{% if endpoint.endpointType == 'retriever' %}
{% raw %}
{{ progress }}%

{{ statusText }}

{% endraw %} {% endif %} {% if endpoint.endpointType == 'listener' %} {% if endpoint.task_id %}

Listening

{% else %}

Stopped

{% endif %} {% endif %}
{{ status }}
{% endblock %}