{% extends "base.html" %} {% block title %}Review Queue{% endblock %} {% block content %}
OCR Review Field Extraction Quality Review Recently Updated

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 %}

Needs cocktail quality review ({{ needs_quality_review|length }})

{% if needs_quality_review %} {% for row in needs_quality_review %}
{{ row.transaction_date }} ยท {{ row.merchant }}

{{ row.description }}

{{ row.raw_description }}
{% if row.category %} {{ row.category }} {% endif %} {% if row.line_total %} ${{ row.line_total }} {% endif %}
Open document
{% endfor %} {% else %}

No cocktail line items are waiting for quality review.

{% 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 }}
{% else %}

No recent documents found.

{% endif %}
{% endblock %}