{% extends "base.html" %} {% from "task.html" import task %} {% block content %} {% if pipelines|length == 0 %}

There are no pipelines to view.

{% else %}
{% for pipeline in pipelines %} {% endfor %}
Title Time of creation Data source NLP Tool Learner Status
{{ pipeline.display_title }} {{ pipeline.created|datetime }} {{ pipeline.data_source.display_title }} {{ pipeline.nlp_tool.name }} {{ pipeline.learner.name }} {{ task(pipeline.task) }} Copy Delete
{% endif %} {% endblock %}