{% 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 "Identifyer" %} | {% translate "Details" %} |
|---|---|---|
| {% if row.action == 'create' %} {% translate "CREATE" %} {% else %} {% translate "UPDATE" %} {% endif %} | {{ row.identifier }} | {{ row.details }} |
... and {{ total_count|add:"-10" }} more records.
{% endif %}