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

{% trans "Arbitrary CWL" %}

{% if arbitrary_cwls %}
{% csrf_token %} {% for arbitrary_cwl in arbitrary_cwls %} {% endfor %}
ID CWL {% trans "Name" %} {% trans "Description" %}
{{ arbitrary_cwl.executable_id }} {{ arbitrary_cwl.get_cwl_type_display.upper }} {{ arbitrary_cwl.cwl.label }} {{ arbitrary_cwl.cwl.doc }}
{% if update == False %}
{% else %}
{% endif %}
{% endif %}
{% if update == False %}

{% trans "Add an Arbitrary CWL File" %}

{% else %}

{% trans 'Update an Arbitrary CWL File' %}

{% endif%}
{% csrf_token %}
{% if message %} {% endif %} {% if update == False %} {% else %} {% endif %}
{% trans 'Cancel' %}
{% endblock %} {% block script %} {% endblock %}