{% translate "Import Preview" %}
{% blocktranslate with total=total_count created=create_count updated=update_count %}
Found {{ total }} records in the CSV file.
- {{ created }} will be created.
- {{ updated }} will be updated.
{% endblocktranslate %}
{% translate "Sample Records" %}
| {% translate "Action" %} | {% translate "CSV Name / Matched Voter" %} | {% translate "Details" %} |
|---|---|---|
| {% if row.action == 'create' %} {% translate "CREATE" %} {% else %} {% translate "UPDATE" %} {% endif %} |
{% if row.csv_full_name %}
CSV: {{ row.csv_full_name }}
{% if "Voter: N/A" not in row.identifier %} {% endif %} {% endif %} {% if "Voter: N/A" not in row.identifier %} Matched: {{ row.identifier|cut:"Voter: " }} {% else %} {% if not row.csv_full_name %}N/A{% endif %} {% endif %} |
{{ row.details }} |
... and {{ total_count|add:"-10" }} more records.
{% endif %}