{% extends 'base/base.html' %} {% load widget_tweaks %} {% block content %} {% if messages %}
{% for message in messages %} {{ message }}
{% endfor %} {% endif %} Load saved query

Run Extraction

{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{field.label}}: {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}

Data Source

{% with field=form.corpus %}
{{ field|add_class:"form-control" }}
{% endwith %} {% with field=form.extractor %}
{{ field|add_class:"form-control" }}
{% endwith %} {% if form.source %} {% with field=form.source %}
{{ field|add_class:"form-control" }}
{% endwith %} {% with field=form.alignment %}
{{ field|add_class:"form-control" }}
{% endwith %} {% if form.documents %} {% with field=form.documents %}

None selected

{% endwith %} {% endif %} {% endif %}

Query

{% with field=form.pos %}
? {{ field|add_class:"form-control"|add_class:"maybe-list" }}
{% endwith %} {% with field=form.lemmata %}
{{ field|add_class:"form-control"|add_class:"maybe-list" }}
{% endwith %} {% with field=form.regex %}
? {{ field|add_class:"form-control"|add_class:"maybe-list" }}
{% endwith %} {% with field=form.position %}
{{ field|add_class:"form-control"|add_class:"maybe-list" }}
{% endwith %}

Options

{% with field=form.file_limit %}
{{field|add_class:"form-control"}}
{% endwith %} {% with field=form.output_format %}
{{field|add_class:"form-control"}} {{field.help_text}}
{% endwith %}
{% csrf_token %}
{% endblock %}