{% extends "base.html" %} {% load static %} {% block title %}{% if is_admin %}Add lots for {{ tos.name }}{% else %}Add lots to {{ auction }}{% endif %}{% endblock %} {% 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 }}. Lots are saved automatically as you fill them in. You can edit these lots, add images, or add lots one at a time from your selling dashboard. {% endif %}

{% with price_min=auction.only_whole_dollar_bids|yesno:"1,0.01" price_step=auction.only_whole_dollar_bids|yesno:"1,0.01" %} {% for lot in existing_lots %}
{% if not lot.can_be_edited %}
{{ lot.cannot_be_edited_reason }}
{% endif %}
Lot #{{ lot.lot_number_display }}
{% if use_custom_field_1 %}
{% endif %} {% if use_quantity %}
{% endif %} {% if reserve_price_mode != 'disable' %}
{% endif %} {% if buy_now_mode != 'disable' %}
{% endif %} {% if use_donation %}
{% endif %} {% if use_i_bred_this_fish %}
{% endif %} {% if use_custom_checkbox %}
{% endif %} {% if use_custom_dropdown %}
{% endif %}
{% endfor %} {% for i in "x"|rjust:initial_rows %}
{% if use_custom_field_1 %}
{% endif %} {% if use_quantity %}
{% endif %} {% if reserve_price_mode != 'disable' %}
{% endif %} {% if buy_now_mode != 'disable' %}
{% endif %} {% if use_donation %}
{% endif %} {% if use_i_bred_this_fish %}
{% endif %} {% if use_custom_checkbox %}
{% endif %} {% if use_custom_dropdown %}
{% endif %}
{% endfor %} {% endwith %}
{% if is_admin and max_lots_per_user %} {% endif %} {% if is_admin %} {% endif %}

{% if is_admin %} Back to users {% else %} To selling dashboard {% endif %}
{% comment %} Label printing is native (Bluetooth) in the mobile app; hide the web print-labels button there. {% endcomment %} {% if not request.is_mobile_app %}
Print labels
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}