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

CSV Import Playground

Build a request for POST /api/v1/import/csv and preview canonical payload output.

{% if editor_products_payload %} {% include "_product_editor_batch.html" %} {% set export_submit_label = "Export All as CSV" %} {% set export_info_heading = "CSV Export Playground" %} {% set export_info_extra = '

' ~ (editor_products_payload | length) ~ ' canonical product' ~ ('s' if editor_products_payload | length != 1 else '') ~ ' ready for export testing

' %} {% include "_export_form.html" %} {% elif editor_product_payload %} {% include "_product_editor.html" %} {% set export_submit_label = "Export Canonical Payload as CSV" %} {% set export_info_heading = "CSV Export Playground" %} {% set export_info_extra = "" %} {% include "_export_form.html" %} {% endif %} {% if csv_error %} {% endif %} {% endblock %}