{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Add lots for {{ tos.name }}{% endblock %} {% load static %} {% block content %} {% include 'auction_ribbon.html' %}

{% if is_admin %}You are adding/editing lots for {{ tos.name }}, bidder number {{ tos.bidder_number}} {% else %} Use this page to quickly add lots to {{ auction }}. Enter one lot per row. You can edit these lots, add images, or add lots one at a time from your selling dashboard. {% endif %}

{{ formset.management_form }}
{% crispy formset helper %} {% comment %} "Save and print labels" opens a browser print view; the mobile app prints natively over Bluetooth, so hide it there (the plain "Save lots" button remains). {% endcomment %} {% if not request.is_mobile_app %}{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}