{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Withdraw consumables{% endblock %} {% block content %}

Withdraw consumables

Use this form to {% if self_checkout %}checkout{% else %}charge users for{% endif %} consumable items & supplies.

{% csrf_token %} {% if not self_checkout %}
{% endif %}
{% regroup consumables by category as categories %} {% for category in categories %} {% if categories|length > 1 or category.grouper %} {% endif %} {% for item in category.list %} {% endfor %} {% endfor %}
{{ category.grouper|default_if_none:"Uncategorized" }}
1 or category.grouper %}style="padding-left: 15px;"{% endif %}> {{ item.name }}{% if rates and rates|get_item:item.name %} ({{ rates|get_item:item.name|safe }}){% endif %}
{% include 'consumables/consumables_order.html' %}
{% endblock %}