{% extends "two_column.html" %} {% load static %} {% load i18n %} {% load status_codes %} {% load inventree_extras %} {% block page_title %} InvenTree | {% trans "Build Order" %} - {{ build }} {% endblock %} {% block pre_content %} {% if build.sales_order %}
{{ build.title }}
{% endblock %} {% block page_details %}{% trans "Part" %} | {{ build.part.full_name }} | |
{% trans "Quantity" %} | {{ build.quantity }} | |
{% trans "Status" %} | {% build_status_label build.status %} | |
{% trans "Target Date" %} | {{ build.target_date }} {% if build.is_overdue %} {% trans "Overdue" %} {% endif %} | |
{% trans "Progress" %} | {{ build.completed }} / {{ build.quantity }} | |
{% trans "Parent Build" %} | {{ build.parent }} | |
{% trans "Sales Order" %} | {{ build.sales_order }} | |
{% trans "Issued By" %} | {{ build.issued_by }} | |
{% trans "Responsible" %} | {{ build.responsible }} |