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

Stockroom Requests

{% csrf_token %}



Pending Requests

{% for c in consumable_requests %} {% if c.deleted == False %} {% endif %} {% empty %} {% endfor %}
Date User Project Qty Item Account
{{ c.date }} {{ c.customer }} {{ c.project }} {{ c.consumable }} {{ c.project.account.name }} {% url 'fulfill_order' c.id as fulfill_order_url %} Delete
{% if start_date or end_date %} No requests for stockroom items exist {% if start_date and end_date %}between {{ start_date }} and {{ end_date }}{% elif start_date %}after {{ start_date }}{% else %}before {{ end_date }}{% endif %}. {% endif %}
{% endblock %}