{% extends "webgateway/core_html.html" %} {% load i18n %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% block title %} Run {{ paramData.name }} {% endblock %} {% block link %} {% endblock %} {% block script %} {{ block.super }} {% include "webgateway/base/includes/script_src_jquery.html" %} {% include "webgateway/base/includes/script_src_popup.html" %} {% include "webgateway/base/includes/jquery-ui.html" %} {% endblock %} {% block body %}
{% csrf_token %}

{{ paramData.name }}

{{ paramData.description|linebreaks }} {% if paramData.authors %}
Authors: {{ paramData.authors }}
{% endif %} {% if paramData.contact %}
Contact: {{ paramData.contact }}
{% endif %} {% if paramData.version %}
Version: {{ paramData.version }}
{% endif %}
{% for i in paramData.inputs %}
{% include "webclient/scripts/include_param.html" %} {% if i.children %}
{% for i in i.children %} {% include "webclient/scripts/include_param.html" %} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}