{% extends "part/part_base.html" %} {% load inventree_extras %} {% load i18n %} {% load static %} {% block sidebar %} {% url "part-detail" part.id as url %} {% include "sidebar_link.html" with url=url text="Return to BOM" icon="fa-undo" %} {% endblock %} {% block heading %} {% trans "Upload Bill of Materials" %} {% endblock %} {% block actions %} {% endblock %} {% block page_info %}

{% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}Step {{step}} of {{count}}{% endblocktrans %} {% if description %}- {{ description }}{% endif %}

{% csrf_token %} {% load crispy_forms_tags %} {% block form_buttons_top %} {% endblock form_buttons_top %} {% block form_alert %}
{% trans "Requirements for BOM upload" %}:
  • {% trans "The BOM file must contain the required named columns as provided in the " %} {% trans "BOM Upload Template" %}
  • {% trans "Each part must already exist in the database" %}
{% endblock %} {{ wizard.management_form }} {% block form_content %} {% crispy wizard.form %} {% endblock form_content %}
{% block form_buttons_bottom %} {% if wizard.steps.prev %} {% endif %}
{% endblock form_buttons_bottom %}
{% endblock page_info %} {% block js_ready %} {{ block.super }} enableSidebar('bom-upload'); {% endblock js_ready %}