Review Queue
Work through OCR review and field extraction in order.
Needs OCR review ({{ needs_ocr_review|length }})
{% if needs_ocr_review %}
| Document | Type | Review status | Updated |
{% for doc in needs_ocr_review %}
| {{ doc.document_id }} |
{{ doc.document_type }} |
{{ doc.review_status }} |
{{ doc.updated_at }} |
{% endfor %}
{% else %}
No documents currently need OCR review.
{% endif %}
Needs field extraction ({{ needs_field_extraction|length }})
{% if needs_field_extraction %}
| Document | Type | Review status | Updated |
{% for doc in needs_field_extraction %}
| {{ doc.document_id }} |
{{ doc.document_type }} |
{{ doc.review_status }} |
{{ doc.updated_at }} |
{% endfor %}
{% else %}
No reviewed documents are waiting on field extraction.
{% endif %}
Recently updated
{% if recently_updated %}
| Document | Type | Review status | Current path | Updated |
{% for doc in recently_updated %}
| {{ doc.document_id }} |
{{ doc.document_type }} |
{{ doc.review_status }} |
{{ doc.current_path }} |
{{ doc.updated_at }} |
{% endfor %}
{% endif %}