|
{% trans "Description" %} |
{{ build.title }} |
|
{% trans "Part" %} |
{{ build.part.full_name }} |
|
{% trans "Quantity" %} | {{ build.quantity }} |
|
{% trans "Stock Source" %} |
{% if build.take_from %}
{{ build.take_from }}
{% else %}
{% trans "Stock can be taken from any available location." %}
{% endif %}
|
|
{% trans "Destination" %} |
{% if build.destination %}
{{ build.destination }}
{% else %}
{% trans "Destination location not specified" %}
{% endif %}
|
|
{% trans "Status" %} |
{% build_status_label build.status %} |
|
{% trans "Progress" %} |
{{ build.completed }} / {{ build.quantity }} |
{% if build.batch %}
|
{% trans "Batch" %} |
{{ build.batch }} |
{% endif %}
{% if build.parent %}
|
{% trans "Parent Build" %} |
{{ build.parent }} |
{% endif %}
{% if build.sales_order %}
|
{% trans "Sales Order" %} |
{{ build.sales_order }} |
{% endif %}
{% if build.link %}
|
{% trans "External Link" %} |
{{ build.link }} |
{% endif %}
{% if build.issued_by %}
|
{% trans "Issued By" %} |
{{ build.issued_by }} |
{% endif %}
{% if build.responsible %}
|
{% trans "Responsible" %} |
{{ build.responsible }} |
{% endif %}