{% extends 'core/base.html' %} {% load i18n %} {% block content %}
{% csrf_token %}

Create Job for project "{{ project.project_name }}"


{% if executable.type == executable.ExecutableTypes.TOOL %} {% trans "Tool" %} {% elif executable.type == executable.ExecutableTypes.WORKFLOW %} {% trans "Workflow" %} {% elif executable.type == executable.ExecutableTypes.ARBITRARY_CWL %} {% trans "Arbitrary CWL" %} {% else %} {% trans executable.get_type_display %} {% endif %} {% trans "Specification" %}

{% if executable.cwl.class %} {% endif %} {% if executable.cwl.label %} {% endif %} {% if executable.cwl.doc %} {% endif %} {% if executable.cwl.baseCommand %} {% endif %}
ID {{ executable.executable_id }}
{% trans "Type" %} {% trans executable.get_type_display %}
{% trans "CWL Type" %} {{ executable.cwl.class }}
{% trans "Name" %} {{ executable.cwl.label }}
{% trans "Description" %} {{ executable.cwl.doc }}
{% trans "Base Command" %} {{ executable.cwl.baseCommand }}
{% if cwl_job.has_parameters %}

{% trans "Parameter Specification" %}

{% for p in cwl_job.parameter_details %} {% if p.type == "string" %} {% elif p.type == "boolean" %} {% elif p.type == "File" %} {% else %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Description" %} {% trans "Type" %} {% trans "Value" %}
{{ p.name }} {{ p.description }}{% trans "String" %} {% trans "Boolean" %} {% trans "File" %} {% if project.datasource_set.all %} {% endif %} {{ p.type }} {% trans "Unsupported Type" %}
{% endif %} {% if not project.datasource_set.all %} {% if executable.uses_files %} {% endif %} {% endif %} {% if cwl_job.unsupported_dict %}

{% trans "Add other Parameters"%}

{% if message %} {% endif %} {% endif %}

{% trans "Job Specification" %}

{% trans "Name" %}
{% trans "Description" %}
{% trans "Repeat Interval (in days)" %}
{% trans "Command to setup Python and pip on Cluster" %}

{% if update %} {% trans "Cancel" %} {% endif %}

{% endblock %} {% block script %} {% endblock %}