{% extends "base.html" %} {% block title %}Line Items{% endblock %} {% block content %}

Line Item Summary

Summary Results

{% if summary_rows %}
{% for row in summary_rows %} {% endfor %}
Item Count Avg Price Min Price Max Price Rated Count Avg Rating
{{ row.item }} {{ row.count }} {{ row.avg_price }} {{ row.min_price }} {{ row.max_price }} {{ row.rated_count }} {{ row.avg_rating }}
{% else %}

No summary rows found for the current search.

{% endif %}

Advanced Search

Clear

Results

{% if not has_advanced_query %}

Enter one or more filters and run a search to view detailed line-item results.

{% elif rows %} {% for row in rows %}
{{ row.transaction_date }} · {{ row.merchant }}

{{ row.description }}

{{ row.raw_description }}
{% if row.category %} {{ row.category }} {% endif %} {% if row.quantity %} Qty {{ row.quantity }} {% endif %} {% if row.line_total %} ${{ row.line_total }} {% endif %} {% if row.confidence %} Conf {{ row.confidence }} {% endif %} {% if row.quality_rating %} Rating {{ row.quality_rating }} {% endif %} {% if row.is_reviewed %} Reviewed {% endif %} {% if row.is_approved %} Approved {% endif %} {% if row.is_excluded %} Excluded {% endif %} {% if row.is_na %} N/A {% endif %}
Open document
{% endfor %} {% else %}

No line items found for the current filters.

{% endif %}

Quality Review Queue

{% if queue_rows %} {% for row in queue_rows %}
{{ row.transaction_date }} · {{ row.merchant }}

{{ row.description }}

{{ row.raw_description }}
{% if row.category %} {{ row.category }} {% endif %} {% if row.quantity %} Qty {{ row.quantity }} {% endif %} {% if row.line_total %} ${{ row.line_total }} {% endif %} {% if row.confidence %} Conf {{ row.confidence }} {% endif %} {% if row.quality_rating %} Rating {{ row.quality_rating }} {% endif %}
Open document
{% endfor %} {% else %}

No line items are waiting for quality review.

{% endif %}
{% endblock %}