{% extends "base.html" %} {% block title %} » General Imports » {{process_id}} {% endblock %} {% block nav %} General Imports » {{process_id}} {% endblock %} {% block content %} {% if line_number %}

Line number {{line_number}}.

{% endif %} {% if is_alive %}

Still running. Refresh the page to see latest progress.

{% else %} {% if error_message %}

The import has failed and so the whole import has been rolled back. The reason for the failure is:

{{error_message}}
{% else %}

The file has been imported successfully.

{% endif %} {% endif %} {% if csv_line %} {% for title, value in csv_line %} {% endfor %} {% for title, value in csv_line %} {% endfor %}
Failed Line
{{title}}
{{value}}
{% endif %} {% endblock %}