{% extends BASE_TEMPLATE %} {% load staticfiles %} {% block head-title %}{{ title }}{% endblock %} {% block main %} {% endblock %} {% block menu %}
  • Cancel
  • {% endblock %} {% block content %}
    {% if profile.role == 'A' %}
    Upload Parts

    To batch create parts, upload a csv that contains columns with the headers 'part_class' or 'part_number', 'description' or 'value' along with 'value_units', and 'revision'. If you specify a part number then it must be one that is not already being used. If you don't specify a part number then IndaBOM will create one for you.

    You may optionally specify a manufacturer and manufacturer's part number using columns with the headers 'manufacturer' and a 'manufacturer_part_number'. For the names of other optional columns click here.

    {% csrf_token %}
    File {{ form.file }}
    {{ form.file.errors }}
    {% else %} {% include 'bom/nothing-to-see.html' with required_privilege='Admin' %} {% endif %}
    {% endblock %}