{% extends "layout_report.html" %} {% load tz %} {% load humanize %} {% load app_filters %} {% block content %} {{ block.super }}
Customer
Item
Line
Job
Product
Status
Qty Required
Qty Staged
Qty Available
{% for ingredient in ingredient_list %}
{{ ingredient.frmlog.customer }}
{{ ingredient.item.name }}
{{ ingredient.line }}
{{ ingredient.job_id }}
{{ ingredient.frmlog.product }}
{{ ingredient.status }}
{{ ingredient.qty_required | floatformat:'0' | intcomma }}
{{ ingredient.qty_staged | floatformat:'0' | intcomma }}
{{ ingredient.qty_available | floatformat:'0' | intcomma }}
{% endfor %} {% endblock content %}