{% extends "base.html" %} {% block body_class %}themed-bg{% endblock %} {% block content %}

Import Results

{% if dry_run %}
Dry run only — no changes were saved.
{% endif %} {% if report.header_ok is defined and not report.header_ok %}
The first row didn’t match the expected header; a clean header was injected automatically.
{% endif %}
{% if report.total_rows is not None %}
Total Rows
{{ report.total_rows }}
{% endif %} {% if report.created is not None %}
Created
{{ report.created }}
{% endif %} {% if report.updated is not None %}
Updated
{{ report.updated }}
{% endif %} {% if report.skipped is not None %}
Skipped
{{ report.skipped }}
{% endif %} {% if report.errors is not None %}
Errors
{{ report.errors }}
{% endif %}
{% if report.columns and report.preview %}

Preview

Showing up to {{ report.preview|length }} rows.
{% for c in report.columns %} {% endfor %} {% for row in report.preview %} {% for cell in row %} {% endfor %} {% endfor %}
{{ c }}
{{ cell }}
{% else %}

No preview rows to display.

{% endif %} {% if report.problems %}

Problems

{% endif %}
← Back to Import Settings
{% endblock %}