{# Delete Buy Modal Confirmation dialog for deleting a buy from the queue. Variables: - item: Queue item with firstName, lastName, buyID - typeNum: Store type number #} {% extends 'queue/modals/_base.html' %} {% block modal_title %} Delete Buy - {{ item.firstName }} {{ item.lastName }} {% endblock %} {% block modal_body %}
Are you sure you want to delete this buy?

Customer: {{ item.firstName }} {{ item.lastName }}

This action cannot be undone.

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