{% extends "base.html" %} {% from "task.html" import task %} {% block content %}

There are no data sources to view.

{% else %} {% if processed_data_sources|length > 0 %} Overview {% endif %} Delete All
{% for data_source in data_sources %} {% endfor %}
Title Description Time of creation Number of instances Status
{{ data_source.display_title }} {{ data_source.description }} {{ data_source.created | datetime }} {{ data_source.articles|length or '?' }} {{ task(data_source['task']) }} Delete
{% endif %}

There are no stop word lists to view.

{% else %} Delete All
{% for sw in stop_words %} {% endfor %}
Title Description
{{ sw.display_title }} {{ sw.description }} Delete Download
{% endif %} {% endblock %}