{% comment %} Kiosk (projector) partial, polled by the queue page via htmx. Shows the current head lot big (reusing view_lot_simple.html, WITHOUT ViewLotSimple's notification side effect) plus a strip of the next few upcoming lots. Context: auction, lot (head lot or None), upcoming (list of Lots). {% endcomment %} {% if lot %}
Selling now: lot {{ lot.lot_number_display }}
{% include 'view_lot_simple.html' %} {% else %}
{% endif %} {% if upcoming %}
Coming up next
{% for next_lot in upcoming %}
{% if next_lot.thumbnail %} {% else %} {% endif %}
Lot {{ next_lot.lot_number_display }}
{{ next_lot.lot_name }}
{% endfor %}
{% endif %}