{% extends "base.html" %} {% load url %} {% load static %} {% block title %} {{ object_type|title }} {{ list_type|title }} Options - {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}
{% if object_type == object_type_options.ALGORITHM %}
Here is a list of the existing options that you can use as {{ list_type|lower }} for your {{ object_type|lower }}.
You can select multiple options for your {{ object_type|lower }} {{ list_type|lower }}.
However, the same option cannot be used multiple times, either for input or output for your algorithm. For example,
if you add option ct-image as an input, you can't add another ct-image
option as either input or output of your algorithm.
{% else %}
Here is a list of the existing options that you can use for your {{ object_type|lower }} {{ list_type|lower }}.
You can select multiple options for your {{ list_type|lower }}, but the same option cannot be used multiple
times within one {{ list_type|lower }}.
{% endif %}
If an option does not exist for your use case please contact support with the title, description, and kind
for your new interface option.
| Title | Description | Kind | Slug | {% if list_type == list_type_options.INPUT %}Your algorithm would read this from | {% elif list_type == list_type_options.OUTPUT %}Your algorithm would write this to | {% endif %}
|---|---|---|---|---|---|
| {{ interface.title }} | {{ interface.description }} | {{ interface.get_kind_display }} | {{ interface.slug }} |
{% if list_type == list_type_options.INPUT %}
{% if interface.is_image_kind %}
/input/{{ interface.relative_path }}{% if interface.relative_path %}/{% endif %}<uuid>.mha
or
/input/{{ interface.relative_path }}{% if interface.relative_path %}/{% endif %}<uuid>.tif
{% else %}
/input/{{ interface.relative_path }}
{% endif %}
|
{% elif list_type == list_type_options.OUTPUT %}
{% if interface.is_image_kind %}
/output/{{ interface.relative_path }}{% if interface.relative_path %}/{% endif %}<uuid>.mha
or
/output/{{ interface.relative_path }}{% if interface.relative_path %}/{% endif %}<uuid>.tif
{% else %}
/output/{{ interface.relative_path }}
{% endif %}
|
{% endif %}