{% extends "tickets/base.html" %} {% load static %} {% block title %}Import CSV{% endblock %} {% block content %}

Import CSV

Batch-import tasks by uploading a specifically-formatted CSV. See documentation for formatting rules. Successs and failures will be reported here.

{% if results %}
Results of CSV upload
{% if results.summaries %}

Summary:

{% endif %} {% if results.upserts %}

Upserts (tasks created or updated):

{% endif %} {% if results.errors %}

Errors (tasks NOT created or updated):

{% endif %}
{% endif %}
Upload Tasks
{% csrf_token %}
{% endblock %}