{% include 'favicon.html' %} {% include 'header.html' %}

{% if mode == "import" %} Import Items From CSV {% elif mode == "edit" %} Update Items Using CSV {% endif %}

{% with messages = get_flashed_messages(category_filter=["error"]) %} {% if messages %}

Errors found during submission:

    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% endwith %}
Please upload a properly formatted CSV file
Cancel

Your CSV must include these columns (case-sensitive):

    {% for attrib in item_attributes %}
  • {{ attrib.display_name }} {% if attrib.required %}Required{% endif %} {% if attrib.primary %}Primary{% endif %} {% if attrib.unique %}Unique{% endif %}
  • {% endfor %}
Format requirements:
  • Delimiter: | (pipe character)
  • First row must contain headers exactly as shown above
  • {% if mode == "edit" %}
  • Existing items must include their primary key value
  • {% endif %}
Download CSV Template
{% include 'footer.html' %}