Batch Import Results
{{ form_def.name }}
{# ── Summary strip ── #}
{{ total_count }}
Rows Processed
{{ success_count }}
Submitted Successfully
{{ error_count }}
Rows with Errors
{% if success_count %}
{{ success_count }} row{{ success_count|pluralize }} submitted successfully
and will proceed through the normal approval workflow.
{% endif %}
{% if error_count %}
{{ error_count }} row{{ error_count|pluralize }} could not be submitted
due to validation errors listed below.
Correct the highlighted cells in your file and re-upload.
| Row # |
Column |
Validation Error |
{% for result in results %}
{% if result.status == "error" %}
{% for err in result.errors %}
{% if forloop.first %}
|
{{ result.row }}
|
{% endif %}
{{ err.column }}
{{ err.field_name }}
|
{{ err.message }} |
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if success_count %}
| Row # |
Submission ID |
Action |
{% for result in results %}
{% if result.status == "success" %}
| {{ result.row }} |
#{{ result.submission_id }} |
View
|
{% endif %}
{% endfor %}
{% endif %}