{% extends "base.html" %} {% block title %} Corpus List {% endblock title %} {% block content %}

Corpora

Selected

The following corpora will be included in any analysis.

{% if session.selected_corpora|length == 0 %}
Currently, no corpus is selected.
{% else %}
{% for c in session.selected_corpora %} {{ c }} {% endfor %}
{% endif %}

Available

Add corpora you want to analyze.

{% if corpora|length == 0 %}
Empty corpus list. {% if filter|length != 0 %}Remove the filter "{{ filter }}"" to see all corpora.{% endif %}
{% else %} {% for c in corpora %} {% endfor %}
Corpus name
{% if not c.selected %} {% endif %} {{ c.name }}
{% endif %}
{% endblock content %}