{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_list %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %} {{block.super}}
Select task in the {{ selected_pipeline }} pipeline
{% for pipe in pipe_list %}
{{ pipe.name }}
{% for step in pipe.steps %} {% if step.is_empty %}
{% else %} {% endif %} {% endfor %}
{% endfor %}
{% if step_name %}
Tune arguments
{% csrf_token %} {{ form }}
Launch task and requirements
{{selected_task_name}}
Run task This will queue up the task on the processing celery cluster, if available.
Remember to update arguments first !
{% endif %}
{% endblock %}