Preview
Review any errors before confirming import.
{% if rows and rows|length %}
| # |
Status |
Emp Code |
Full Name |
Email |
Phone |
Department |
Designation |
RM Code |
DOJ |
Work Mode |
Location |
Errors |
{% set error_count = 0 %}
{% for r in rows %}
{% set has_err = (r.status != 'OK') %}
{% if has_err %}{% set error_count = error_count + 1 %}{% endif %}
| {{ r.idx }} |
{% if has_err %}
ERROR
{% else %}
OK
{% endif %}
|
{{ r.data.employee_code }} |
{{ r.data.full_name }} |
{{ r.data.email }} |
{{ r.data.phone }} |
{{ r.data.department }} |
{{ r.data.designation }} |
{{ r.data.reporting_manager_code }} |
{{ r.data.date_of_joining }} |
{{ r.data.work_mode }} |
{{ r.data.location }} |
{% if r.errors and r.errors|length %}
{% for e in r.errors %}
- {{ e }}
{% endfor %}
{% else %}
—
{% endif %}
|
{% endfor %}
{% if error_count %}
{{ error_count }} row(s) have issues.
Fix your file or enable auto-create and re-upload if missing masters.
{% else %}
All rows look good. You can proceed to confirm.
{% endif %}
{% else %}
No rows found in the uploaded file.
{% endif %}