{% extends "base.html" %} {% block title %}Extract{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Extract data into {{ database }} / {{ table }}

Select columns to populate with extracted data:

{% for column in columns %} {% endfor %}

{% include "_extract_drop_handler.html" %} {% if previous_runs %}

Previous extraction tasks

{% for run in previous_runs %} {% endfor %}
ID created completed properties instructions error num_items
{{ run.id }} {{ run.created }} {{ run.completed or "" }} {{ run.properties }} {{ run.instructions or "" }} {{ run.error or "" }} {{ run.num_items }}
{% endif %} {% endblock %}