{% extends "tethys_wps/base.html" %} {% block title %}- Tethys WPS{% endblock %} {% block primary_content %}

{{ process.identifier }}

{{ process.title }}

{% if is_link %}

{{ process.abstract }}

{% else %}

{{ process.abstract }}

{% endif %}

Input

{% for input in process.dataInputs %}
{{ input.identifier }} ({{ input.dataType }}): {{ input.title }}
{% if input.minOccurs > 0 %} REQUIRED {% else %} OPTIONAL {% endif %} {% if input.maxOccurs > 1 %} MULTIPLE {{ input.maxOccurs }} {% endif %}

{{ input.abstract }}

Min. Occurrences: {{ input.minOccurs }}

Max. Occurrences: {{ input.maxOccurs }}

{% if input.dataType == 'ComplexData' %}

Default Value:

Complex Data {% if input.defaultValue.schema %}Schema: {{ input.defaultValue.schema }}{% endif %} {% if input.defaultValue.mimeType %}MIME Type: {{ input.defaultValue.mimeType }}{% endif %} {% if input.defaultValue.encoding %}Encoding: {{ input.defaultValue.encoding }}{% endif %}
{% if input.allowedValues %}

Allowed Values:

{% for allowed_value in input.allowedValues %}
Complex Data {% if allowed_value.schema %}Schema: {{ allowed_value.schema }}{% endif %} {% if allowed_value.mimeType %}MIME Type: {{ allowed_value.mimeType }}{% endif %} {% if allowed_value.encoding %}Encoding: {{ allowed_value.encoding }}{% endif %}
{% endfor %} {% endif %} {% if input.supportedValues %}

Supported Values:

{% for supported_value in input.supportedValues %}
Complex Data {% if supported_value.schema %}Schema: {{ supported_value.schema }}{% endif %} {% if supported_value.mimeType %}MIME Type: {{ supported_value.mimeType }}{% endif %} {% if supported_value.encoding %}Encoding: {{ supported_value.encoding }}{% endif %}
{% endfor %} {% endif %} {% else %}

Default: {{ input.defaultValue }}

{% if input.allowedValues %}

Allowed Values: {{ input.allowedValues|join:', ' }}

{% endif %} {% if input.supportedValues %}

Supported Values: {{ input.supportedValues|join:', ' }}

{% endif %} {% endif %}
{% endfor %}

Output

{% for output in process.processOutputs %}
{{ output.identifier }} ({{ output.dataType }}): {{ output.title }}

{{ output.abstract }}

{% if output.dataType == 'ComplexData' %}

Default Value:

Complex Data {% if output.defaultValue.schema %}Schema: {{ output.defaultValue.schema }}{% endif %} {% if output.defaultValue.mimeType %}MIME Type: {{ output.defaultValue.mimeType }}{% endif %} {% if output.defaultValue.encoding %}Encoding: {{ output.defaultValue.encoding }}{% endif %}
{% if output.allowedValues %}

Allowed Values:

{% for allowed_value in output.allowedValues %}
Complex Data {% if allowed_value.schema %}Schema: {{ allowed_value.schema }}{% endif %} {% if allowed_value.mimeType %}MIME Type: {{ allowed_value.mimeType }}{% endif %} {% if allowed_value.encoding %}Encoding: {{ allowed_value.encoding }}{% endif %}
{% endfor %} {% endif %} {% if output.supportedValues %}

Supported Values:

{% for supported_value in output.supportedValues %}
Complex Data {% if supported_value.schema %}Schema: {{ supported_value.schema }}{% endif %} {% if supported_value.mimeType %}MIME Type: {{ supported_value.mimeType }}{% endif %} {% if supported_value.encoding %}Encoding: {{ supported_value.encoding }}{% endif %}
{% endfor %} {% endif %} {% else %}

Default: {{ output.defaultValue }}

{% if output.allowedValues %}

Allowed Values: {{ output.allowedValues|join:', ' }}

{% endif %} {% if output.supportedValues %}

Supported Values: {{ output.supportedValues|join:', ' }}

{% endif %} {% endif %}
{% endfor %}
{% endblock %}