{% extends 'bom/bom-base.html' %} {% load static %} {% load materializecss %} {% block head-title %}{{ title }}{% endblock %} {% block bom-menu %}
  • Cancel
  • {% endblock %} {% block content %}
    {% if perms.bom.create_part %}
    {% csrf_token %}

    Part Number

    {% if organization.number_scheme == 'S' %}

    Part numbers must be in the format CCC-{{ organization.number_ns }}-VV where CCC is the part number class, {{ organization.number_ns }} is the part number number item, and VV is the part variation. To change the part number item length or to create part classes, go to the Settings page, and create them in the IndaBOM tab.

    {% endif %}
    {{ part_form.non_field_errors }} {{ manufacturer_part_form.non_field_errors }}
    {{ part_form|materializecss:'m4 s12' }}

    Initial Revision

    {{ part_revision_form|materializecss:'m4 s12' }}
    {# {% include 'bom/part-revision-display.html' with part_revision_form=part_revision_form %}#}

    Sourcing (Optional)

    Link a manufacturer part number so this part can be sourced and priced. You can skip this and add or edit sourcing anytime from the part page.

    {{ manufacturer_part_form.manufacturer|materializecss:'m4 s12' }} {{ manufacturer_part_form.manufacturer_part_number|materializecss:'m4 s12' }} {{ manufacturer_part_form.link|materializecss:'m4 s12' }} {{ manufacturer_part_form.datasheet_url.as_hidden }} {{ manufacturer_part_form.sourcing_disable.as_hidden }}
    {% else %} {% include 'bom/nothing-to-see.html' with required_privilege='Admin' %} {% endif %}
    {% endblock %}