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

Generate Bidder Invoices

{% if search_query %}

Search Results

{% if bidders_found %} {% else %}

No bidders found matching your search.

{% endif %}
{% endif %}

All Winning Bidders

{% if winning_bidders %}
{% for bidder in winning_bidders %}
#{{ bidder.paddle_number }} - {{ bidder.name }}
{% endfor %}
{% else %}
No bidders have won any items yet.
{% endif %} {% endblock %} {% block scripts %} {% endblock %}