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

Stockroom

Use this form to submit orders for consumable items & supplies.

{% csrf_token %}
{% 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 Price
{{ category.grouper|default_if_none:"Uncategorized" }}
1 or category.grouper %}style="padding-left: 15px;"{% endif %}>
{% if item.notes %} {% endif %} {% if item.consumabledetails %} consumable thumbnail {% endif %} {{ item.name }} {% if rates and rates|get_item:item.name %}{{ rates|get_item:item.name|safe }}{% endif %}
{% include 'NEMO_stockroom/stockroom_order.html' %}
{% endblock %}