{% extends "base.html" %} {% block title %}Quality Review Queue{% endblock %} {% block content %}
{% if next_row %}
Jump to next item Open all cocktails
{% else %}

No cocktail line items are waiting for quality review.

{% endif %}

Pending quality reviews

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

{{ row.description }}

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

Nothing is waiting in the quality review queue.

{% endif %}
{% endblock %}