{% extends "admin/base_site.html" %} {% block title %}Project Build Bill of Materials{{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if project_build.shortfalls.all %}

Shortfalls

{% endif %} {% for part_reservation in project_build.part_reservations.all %} {% for inventory_action in part_reservation.inventory_actions.all %} {% if not forloop.first %} {% endif %} {% endfor %} {% endfor %}
Line Refs Part Quantity Line Qty On Hand Qty Projected
0 N/A PCB 1
{{ part_reservation.line_numbers }} {{ part_reservation.footprints }} {{ part_reservation.part }}
{{ inventory_action.delta|cut:"-" }} inv {{ inventory_action.inventory_line.quantity_on_hand }} {{ inventory_action.inventory_line.quantity }}
(*) Marked parts are optional
Qty On Hand: The number of parts in physical inventory before doing this build.
Qty Pending: The number of parts in physical inventory after all pending and cleared builds have been built.
{% endblock %}