{% extends "base.html" %} {% block title %}Reports - {{ super() }}{% endblock %} {% block content %}
| 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) }} |
| Paddle # | Bidder Name | Lots Won | Subtotal | Tax | Total |
|---|---|---|---|---|---|
| {{ 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 # | Description | Status | Winning Bid | Winning 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. | ||||