Review Queue

Work through OCR review and field extraction in order.

{% if next_ocr %} Next needing OCR review {% endif %} {% if next_fields %} Next needing field extraction {% endif %}

Needs OCR review ({{ needs_ocr_review|length }})

{% if needs_ocr_review %}
{% for doc in needs_ocr_review %} {% endfor %}
DocumentTypeReview statusUpdated
{{ doc.document_id }} {{ doc.document_type }} {{ doc.review_status }} {{ doc.updated_at }}
{% else %}

No documents currently need OCR review.

{% endif %}

Needs field extraction ({{ needs_field_extraction|length }})

{% if needs_field_extraction %}
{% for doc in needs_field_extraction %} {% endfor %}
DocumentTypeReview statusUpdated
{{ doc.document_id }} {{ doc.document_type }} {{ doc.review_status }} {{ doc.updated_at }}
{% else %}

No reviewed documents are waiting on field extraction.

{% endif %}

Recently updated

{% if recently_updated %}
{% for doc in recently_updated %} {% endfor %}
DocumentTypeReview statusCurrent pathUpdated
{{ doc.document_id }} {{ doc.document_type }} {{ doc.review_status }} {{ doc.current_path }} {{ doc.updated_at }}
{% endif %}