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

{% trans "Preview Your Import" %}

{% trans "You're almost done! To complete your import click 'Import Now.'" %}

{{ import_i.file.name|truncatechars:123 }}

{{ import_i.file.name }}

  • {{ total }} {% trans "Total Events" %}
  • {{ import_i.total_created }} {% trans "Valid Events" %}
  • {{ import_i.total_invalid}} {% trans "Invalid Events" %}
{% for event in event_list %}
{% trans "Row" %} {{ event.ROW_NUM }} - {{ event.title }}
{% if not event.IS_VALID %} {% trans 'ERROR' %}: {{ event.ERROR }}
{% trans "This event will be ignored (not added)" %} {% else %} {% trans "This event will be included" %} {% endif %}
{% trans "Date" %}: {{ event.start_dt }} - {{ event.end_dt }}
{% trans "Place" %}: {{ event.place__name }}
{% trans "Description" %}: {{ event.description }}
{% endfor %}
{% csrf_token %}
{% endblock %}