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

URL Import Playground

Build a request for POST /api/v1/import. Multiple URLs are supported for batch + partial-success behavior.

{% for url in form.product_urls %}
{% endfor %}
{% 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 url_import_errors %} {% endif %} {% if error %} {% endif %} {% endblock %}