{% extends "base.html" %} {% load i18n %} {% load url_tools %} {% load request_tools %} {% block title %} {% with request|tocorpus as corpus %} {% if finished %} {% trans "Corpus processed" %} {% else %} {% trans "Processing corpus..." %} | Unitex/GramLab | {{ corpus.title }} | {{ block.super }} {% endif %} {% endwith %} {% endblock title %} {% block content %} {% with request|tocorpus as corpus %} {% if finished %}
{% trans "Task" %} | {% trans "Status" %} |
---|---|
{% trans task.title %} | {% if not task.began %} {% trans "Waiting" %} {% else %} {% if task.completed %} {% trans "Finished" %} {% else %} {% trans "Running" %} {% endif %} {% if task.errored %} {% trans "with errors" %} {% endif %} {% endif %} |