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

Summary Results

{% if rows %}
{% for row in 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 %}
{% endblock %}