{% extends "events/base.html" %} {% load event_tags %} {% load base_tags %} {% load perm_tags %} {% load styled_forms %} {% load i18n %} {% block title %}{% firstof MODULE_EVENTS_LABEL_PLURAL 'Events' %} {% trans "Import" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% event_nav request.user %}

Import Events Process

{% trans "We're not done yet! This page will be updated as your events are imported." %}

{% trans "Import ID" %}: {{ import_i.id }}

{% trans "File" %}: {{ import_i.file.name }}

{% trans "Status" %}: {{ import_i.status }}

{% if import_i.status == "completed" %}

{% trans "Import complete!" %} {% trans "View your events calendar." %} {% endif %} {% if import_i.status == "failed" %}

{% trans "Failure Reason" %} {{ import_i.failure_reason }}

{% endif %}

{% trans "Total Events Created" %}: {{ import_i.total_created }}

{% endblock %} {% block extra_body %} {{ block.super }} {% if import_i.status != "completed" %} {% endif %} {% endblock %}