{% extends "base.html" %} {% block content %}

Preview Import

{% for col in columns %}{% endfor %} {% for row in rows %} {% for cell in row.cells %}{% endfor %} {% endfor %}
Include?{{ col }}Status
{% match row.status %} {% when ImportRowStatus::Invalid with (_e) %} {% when _ %} {% endmatch %} {{ cell }} {% match row.status %} {% when ImportRowStatus::Valid %}✓ {% when ImportRowStatus::Duplicate %}⚠ duplicate {% when ImportRowStatus::Invalid with (e) %}✗ {{ e }} {% endmatch %}
{% endblock %}