{% extends "admin/base.html" %} {% block messages %} {% comment %} This is displayed elswhere {% endcomment %} {% endblock messages %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}
{% if import_jobs %}

Import Tasks

{% else %}

The spreadsheet must follow this convention:

  1. A header row must include the columns Campaign, Campaign Short Description, Campaign Long Description, Campaign Slug, Project Slug, Project, Project Description, and Import URLs
  2. The header names are case sensitive but may occur in any order and other columns will be ignored
  3. Project titles (in the Project column) must be 80 characters or less.
  4. The Campaign, Project, and Import URLs columns must have values or the row will be skipped
  5. The Import URLs column may contain one or more URLs separated by spaces or newlines. Do not include commas or semicolons as those are valid URL characters and will be treated as part of the URL.
  6. Campaigns and Projects will be created if they do not exist but existing records will not be modified. If you want to recreate them, delete the old records before running the importer.
  7. Items will be added to projects but items which have already been imported into that project will be skipped. This means that you can add multiple items to a project both by having the “Import URLs” cell contain multiple URLs or by duplicating the row with new ”Import URLs” values.

{% csrf_token %} {{ form.as_p }}
{% endif %} {% if messages %}

Messages

{% endif %}
{% endblock content %}