{% extends "main.html" %} {% block content %}
{% if site_id == 1 %}

Species External ID Import Results — Site 1 (ASN)

{% else %}

Species External ID Import Results — Site 2 (CSO)

{% endif %}
{% if import_archive.import_status == 'FULL' %}
✓ Import Successful — all eligible rows processed without errors.
{% elif import_archive.import_status == 'PART' %}
⚠ Partial Import — some rows had errors. See the results log below.
{% else %}
✗ Import Failed — no rows were successfully processed.
{% endif %}
Summary
Updated Skipped Errors Total Rows
{{ summary.updated }} {{ summary.skipped }} {{ summary.errors }} {{ summary.total }}

Skipped rows had a non-truthy render_cares value and were intentionally not processed. Error rows had a data problem (missing id, name mismatch, missing external_id, etc.) and were not updated. Check the results log for details.

Import Archive
{% if import_archive.import_results_file %} {% endif %}
Name {{ import_archive.name }}
Status {{ import_archive.get_import_status_display }}
Results Log Download results CSV
Back to Tools
{% endblock content %}