{% load custom_tags_and_filters %} {% with customer.id|stringformat:"d" as customer_id %} {% if success_messages %} {% for message in success_messages %}
{{ message }}
{% endfor %} {% endif %} {% if request.session.kiosk_withdrawals and customer_id in request.session.kiosk_withdrawals %}

Current order:

{% for withdraw in request.session.kiosk_withdrawals|get_item:customer_id %} {% endfor %}
Customer Project Consumable Quantity
{{ withdraw.customer }} {{ withdraw.project }} {{ withdraw.consumable }} {{ withdraw.quantity }}
{% csrf_token %}
{% csrf_token %} {% button type="delete" value="Clear" title="Remove all items in current order" onclick="submit_and_disable(this)" %}
{% csrf_token %} {% button type="save" value="Confirm" %}
{% endif %} {% endwith %}