{% extends "base.html" %} {% block title %}Reports - {{ super() }}{% endblock %} {% block content %}

Reports

Sale Summary

Total Lots{{ summary.total_lots }}
Lots Sold{{ summary.sold_lots }}
Lots Unsold{{ summary.unsold_lots }}
Total Hammer (Revenue){{ settings.currency_symbol }}{{ "%.2f"|format(summary.total_hammer) }}
Average Price per Sold Lot{{ settings.currency_symbol }}{{ "%.2f"|format(summary.avg_price) }}

Bidder Totals

Export to CSV
{% for row in bidder_totals %} {% else %} {% endfor %}
Paddle #Bidder NameLots WonSubtotalTaxTotal
{{ row.paddle }} {{ row.name }} {{ row.lots_won }} {{ settings.currency_symbol }}{{ "%.2f"|format(row.subtotal) }} {{ settings.currency_symbol }}{{ "%.2f"|format(row.tax) }} {{ settings.currency_symbol }}{{ "%.2f"|format(row.total) }}
No bidders have won any lots yet.

Lot Results

Export to CSV
{% for row in lot_results %} {% else %} {% endfor %}
Lot #DescriptionStatusWinning BidWinning Paddle
{{ row.lot_number }} {{ row.description }} {% if row.paddle_number and row.winning_bid_amount > 0 %} Sold {% else %} Unsold {% endif %} {{ settings.currency_symbol }}{{ "%.2f"|format(row.winning_bid_amount or 0) }} {{ row.paddle_number or 'N/A' }}
No lots have been entered yet.
{% endblock %}