{# Check-In Modal Confirms customer check-in for remote buys. Variables: - item: Queue item with firstName, lastName, buyID - store: Store info object - typeNum: Store type number #} {% extends 'queue/modals/_base.html' %} {% block modal_title %} Check In - {{ item.firstName }} {{ item.lastName }} {% endblock %} {% block modal_body %}
Confirm Customer Check-In

{{ item.firstName }} {{ item.lastName }} has arrived and is ready to be processed.

Containers

{{ item.numContainers }}

Phone

{{ item.phone|default('N/A') }}

{% endblock %} {% block modal_footer %} {% endblock %} {% block modal_scripts %} {% endblock %}