{% extends "build/build_base.html" %} {% load static %} {% load i18n %} {% block details %} {% load status_codes %} {% include "build/tabs.html" with tab='details' %}
{% 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 }} | ||
{% trans "Batch" %} | {{ build.batch }} | ||
{% trans "Parent Build" %} | {{ build.parent }} | ||
{% trans "Sales Order" %} | {{ build.sales_order }} | ||
{% trans "External Link" %} | {{ build.link }} | ||
{% trans "Created" %} | {{ build.creation_date }} | ||
{% trans "Target Date" %} | {% if build.target_date %}{{ build.target_date }}{% if build.is_overdue %} {% endif %} | {% else %}{% trans "No target date set" %} | {% endif %}|
{% trans "Completed" %} | {% if build.completion_date %}{{ build.completion_date }}{% if build.completed_by %}{{ build.completed_by }}{% endif %} | {% else %}{% trans "Build not complete" %} | {% endif %}