{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Stockroom Items{% endblock %} {% block content %}

Stockroom Items

This page allows you to edit the quantities and prices of stockroom items.

{% csrf_token %}




{% csrf_token %} {% button id="update_qtys" type="save" value="Save changes" onclick="" %}

Items

{% if consumables|length == 0 %} {% 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 %}
Item # in stock Price
"{{ search_item }}" doesn't exist in the database. Please click the "Reset" button above, and try again.
{{ category.grouper|default_if_none:"Uncategorized" }}
1 or category.grouper %}style="padding-left: 15px;"{% endif %}> 1 or category.grouper %}style="padding-left: 15px;"{% endif %}> 1 or category.grouper %}style="padding-left: 15px;"{% endif %}> {% if rates and rates|get_item:item.name %}{{ rates|get_item:item.name|safe }}{% endif %}
{% endblock %}