{% 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 page_content %}
{% block heading %}

{% trans "Upload Bill of Materials" %}

{{ wizard.form.media }} {% endblock %}
{% block details %}

{% 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 details %}
{% endblock page_content %} {% block js_ready %} {{ block.super }} {% endblock js_ready %}