{% extends 'annotate_document/base.html' %} {% load annotate_extras %} {% block header %}

Review

{% endblock %} {% block content %}

{% if incomplete_documents%}

Please finish annotating the following documents


{% for document in incomplete_documents %} {% empty %}
  • No documents yet.
  • {% endfor %}
    Document Complete Unannotated Lines
    {{ document.document.title }} {% if '0' in document.annotated_lines %} NO {% else %} YES {% endif %} {% if '0' in document.annotated_lines %}{{document.annotated_lines|count:"0"}}{% endif %}
    {% else %}

    Thank You, you have annotated all the documents allocated to you!


    {% csrf_token %}
    To go back to a continue annotating a document please click here: Document List
    {% if not annotation_complete %} To annotate another document click here: Annotate New Document
    {% endif %} Otherwise please click here to finish: Finish
    {% endif %}

    {% endblock %}