{% extends "modal_form.html" %} {% load inventree_extras %} {% load i18n %} {% block pre_form_content %} {% if not build.has_tracked_bom_items %} {% elif fully_allocated %}
{% trans "Stock allocation is complete for this output" %}
{% else %}

{% trans "Stock allocation is incomplete" %}

    {% for part in unallocated_parts %}
  • {% include "hover_image.html" with image=part.image %} {{ part }}
  • {% endfor %}
{% endif %}
{% trans "The following items will be created" %}
{% include "hover_image.html" with image=build.part.image hover=True %} {% if output.serialized %} {{ output.part.full_name }} - {% trans "Serial Number" %} {{ output.serial }} {% else %} {% decimal output.quantity %} x {{ output.part.full_name }} {% endif %}
{% endblock %}