{% 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 %}#}

    Initial Sourcing (Optional)

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