{% extends "pipelines/pipeline.html" %} {% load pipelines %} {% block content_title %}Start Pipeline: {{ pipeline }}{% endblock content_title %} {% block breadcrumbs %} {{ block.super }} / {{ pipeline }} / Run {% endblock breadcrumbs %} {% block content %}

The following tasks will be ran:

    {% for item in tasks %}
  1. {{ item.0 }}: {{ item.1.title }}
  2. {% endfor %}

{% if form.fields %}Fill in any required data and {% endif %}press Start to run the pipline.

{% csrf_token %} {{ form.as_p }}
{% endblock %}