{% extends 'core/base/base.html' %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% block content %}
Projects {% if project.label %}{{ project.label }}{% else %}New Project{% endif %} CWL Files

Arbitrary CWL

{% if arbitrary_cwls %}
{% csrf_token %} {% for arbitrary_cwl in arbitrary_cwls %} {% endfor %}
ID CWL Name 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 %}

Add an Arbitrary CWL File

{% else %}

Update an Arbitrary CWL File

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