{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Withdraw consumables{% endblock %} {% block content %} {% if form.errors %}
Oops! Something went wrong. Please correct the errors highlighted below.
{{ form.non_field_errors }}
{% endif %}

Withdraw consumables

Use this form to charge users for consumable items & supplies.

{% csrf_token %}
{% if form.cleaned_data.customer %} {% else %} {% endif %}
{% if form.customer.errors %}
{{ form.customer.errors|striptags }}
{% endif %}
{% if form.project.errors %}
{{ form.project.errors|striptags }}
{% endif %}
{% if form.consumable.errors %}
{{ form.consumable.errors|striptags }}
{% endif %}
{% if form.quantity.errors %}
{{ form.quantity.errors|striptags }}
{% endif %}
{% endblock %}