{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %} Pickup locations {% endblock %} {% load static %} {% block content %} {% include 'auction_ribbon.html' %}
This is a list of locations associated with your auction. Typically, in-person auctions will have a single location. Online auctions can have one or more locations; learn about having multiple pickup locations in your auction
Add pickup location {% if auction.all_location_count > 1 %} {% endif %} {% for location in object_list %} {% if auction.all_location_count > 1 %} {% endif %} {% empty %} {% endfor %}
Location Number of usersIncoming lots Outgoing lotsGet directions
{{ location }} {{ location.number_of_users }}{{ location.number_of_incoming_lots }} incoming lots going to here {{ location.number_of_outgoing_lots }} outgoing lots coming from here{% if location.pickup_by_mail %}N/A{% else %}{% if location.has_coordinates %}Directions {% else %} Location not set {% endif %}{% endif %}
No pickup locations yet. Add one with the Add pickup location button above — this is where users pick up the lots they win.
{% endblock %} {% block extra_js %} {% endblock %}