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

Stockroom Withdrawals

{% csrf_token %}



Withdrawals

{% for c in consumable_requests %} {% if c.deleted == False %} {% endif %} {% empty %} {% endfor %}
User Item Qty Project Date Fulfilled Date of Request Order Fulfilled By
{{ c.customer }} {{ c.consumable }} {{ c.quantity }} {{ c.project }} {{ c.withdraw.date }} {{ c.date }} {{ c.withdraw.merchant.first_name}} {{ c.withdraw.merchant.last_name }}
{% 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 %}