{% extends "admin/base_site.html" %} {% block title %}Import workflows{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Import workflows

{% if existing_workflows %}

Already present on the application:

{% for wf in existing_workflows %} {% endfor %}
Name Galaxy ID Annotation Published
{{ wf.name }} {{ wf.galaxy_id }} {{ wf.annotation }} {{ wf.published }}
{% endif %}

List of available workflow(s):

Please select the workflow(s) you would like to add to the application from the following list:

{% csrf_token %} {% for wf in new_workflows %} {% endfor %}
Import Name Galaxy ID Annotation Published
{{ wf.name }} {{ wf.galaxy_id }} {{ wf.annotation }} {{ wf.published }}
{% endblock %}