{% load custom_tags_and_filters %} {% if request.session.withdrawals %}

Current order:

{% for withdraw in request.session.withdrawals %} {% endfor %}
Customer Project Consumable Quantity
{{ withdraw.customer }} {{ withdraw.project }} {{ withdraw.consumable }} {{ withdraw.quantity }}
{% url 'clear_withdrawals' as clear_withdrawals_url %} {% button type="delete" size="small" value="Clear" title="Remove all items in current order" onclick="$('#consumables_order').load('"|concat:clear_withdrawals_url|concat:"')" %}
{% csrf_token %} {% button type="save" size="small" value="Confirm" %}
{% endif %}