{% extends "base.html" %} {% load static %} {% block page_title %} InvenTree | Build - {{ build }} {% endblock %} {% block content %}
{{ build.title }}{% include "build_status.html" with build=build %}
Building {{ build.quantity }} × {{ build.part.full_name }}
Title | {{ build.title }} |
Part | {{ build.part.full_name }} |
Quantity | {{ build.quantity }} |
Stock Source | {% if build.take_from %} {{ build.take_from }} {% else %} Stock can be taken from any available location. {% endif %} |
Status | {% include "build_status.html" with build=build %} |
Batch | {{ build.batch }} |
URL | {{ build.URL }} |
Created | {{ build.creation_date }} |
Enough Parts? | {% if build.can_build %} Yes {% else %} No {% endif %} |
Completed | {{ build.completion_date }}{% if build.completed_by %}{{ build.completed_by }}{% endif %} |
Notes | {{ build.notes }} |
Part | Required | Available | Allocated |
---|---|---|---|
{{ item.part.full_name }} | {{ item.quantity }} | {{ item.part.total_stock }} | {{ item.allocated }} |