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

{% if edit_mode %}{% trans "Edit a Scientific Workflow" %}{% else %}{% trans "Create a Scientific Workflow" %}{% endif %}


{% csrf_token %}
{% trans "Name" %}
{% trans "Description" %}

{% if edit_mode %} {% endif %}

{% for exe in executables %} {% endfor %}
ID {% trans "Name" %} {% trans "Description" %}
{{ exe.executable_id }} {{ exe.cwl.label }} {{ exe.cwl.doc }}
{% endblock %} {% block script %} {% endblock %}