Upload Product Prices CSV
Preview File
{% if preview_data %}
CSV Preview (First 10 rows)
{% for col in preview_data[0].keys() %}
{{ col }}
{% endfor %}
{% for row in preview_data %}
{% for val in row.values() %}
{{ val }}
{% endfor %}
{% endfor %}
{% endif %}