{% extends "base.html" %}
{% block title %}Self-checkin for {{ auction }}{% endblock %}
{% block content %}
{% include "auction_ribbon.html" %}
Self-checkin
Use this page with a barcode scanner in continuous mode to allow people to check in themselves.
Configure your barcode scanner to use a prefix character F9 and a suffix CR character, and attach it in HID (keyboard) mode.
This page will only allow users to check in -- it won't let them assign bidder numbers or add stuff to their invoice.
But, you can use a barcode scanner on any page of this auction to assign bidder numbers or add items to a user's invoice.
{% if not request.is_mobile_app %}Print barcodes here.{% endif %}
{% endblock %}
{% block undiv_content %}
Scan your card to check in
{% endblock %}
{% block extra_js %}
{% comment %} Included directly (not only via the ribbon) because club permission_add_edit users can use this page without seeing the ribbon's admin block. The view sets barcode_check_in_only, so scans on this page can only check people in. {% endcomment %}
{% include "auctions/barcode_scanner.html" %}
{% endblock %}