{% extends 'base.html' %} {% load staticfiles %} {% block title %} {% endblock %} {% block menu %}
  • Cancel
  • {% endblock%} {% block content %}
    Upload Parts

    To batch add parts, upload a csv that contains at least three columns with the headers: 'part_class', 'description', and 'revision' at a minimum. You may also specify a 'manufacturer_part_number' and a 'manufacturer'. If neither is specified the manufacturer_part_number will default to the generated part number, and the manufacturer will default to your organization.

    {% csrf_token %}
    File {{ form.file }}
    {{ form.file.errors }}
    Part Classes Available
    {% for partclass in partclasses %} {% endfor %}
    Code Name Description
    {{ partclass.code }} {{ partclass.name }} {{ partclass.comment }}
    {% endblock %}