{% extends 'base.html' %} {% load i18n %} {% load bootstrap_tags %} {% load humanize %} {% block content %}
{% if loginform %} {% trans "The corpora will appear here" %}
{% trans "after you log in" %}
{% else %} {% if corpora %}
{% for corpus in corpora %}

{{ corpus.title }}

{{ corpus.documents.count }} {% trans "documents" %}

{% endfor %}
{% else %} {% trans "The corpora will appear here" %}
{% trans "after you add any" %}
{% endif %}

{% trans "Add corpus" %} {% endif %}
{% endblock content %}