{% extends "base.html" %} {% load url %} {% load static %} {% block title %} {{ object_type|title }} {{ list_type|title }} Options - {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ object_type|title }} {{ list_type|title }} Options

{% 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.

{% if list_type == list_type_options.INPUT %} {% elif list_type == list_type_options.OUTPUT %} {% endif %} {% for interface in object_list %} {% if list_type == list_type_options.INPUT %} {% elif list_type == list_type_options.OUTPUT %} {% endif %} {% endfor %}
Title Description Kind SlugYour algorithm would read this fromYour algorithm would write this to
{{ interface.title }} {{ interface.description }} {{ interface.get_kind_display }} {{ interface.slug }} {% 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 %} {% 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 %}
{% endblock %} {% block script %} {{ block.super }} {% endblock %}