{% 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 %}
{% with category_collapse="application"|customization:"consumable_category_collapse" %} {% 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 %} {% endwith %}
{{ category.grouper|default_if_none:"Uncategorized" }}
1 or category.grouper %}style="padding-left: 45px;"{% endif %}>
{% if item.notes %}{% endif %} {{ item.name }}{% if rates and rates|get_item:item.name %} ({{ rates|get_item:item.name|safe }}){% endif %} {% if not item.reusable %} {% if item.quantity > 0 %} ({{ item.quantity }} left) {% else %} (sold-out) {% endif %} {% endif %} {% if item.reusable or item.quantity > 0 %} {% endif %}
{% include 'consumables/consumables_order.html' %}
{% endblock %}