{{ _("Import Wizard Steps") }}

{{ form.hidden_tag() }}
{{ form.file.label(class="block mb-2 text-sm font-medium text-gray-900 dark:text-white") }}
{% if form.file.errors %}
{% for error in form.file.errors %}

{{ error }}

{% endfor %}
{% endif %}

{{ _("Import Options") }}

{{ form.replace_existing(class="w-4 h-4 text-primary bg-gray-100 border-gray-300 rounded focus:ring-primary dark:focus:ring-primary dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600") }}
{{ form.replace_existing.label(class="font-medium text-gray-900 dark:text-white") }}

{{ _("When checked, existing steps will be replaced. When unchecked, imported steps will be merged with existing ones.") }}

{% if form.replace_existing.errors %}
{% for error in form.replace_existing.errors %}

{{ error }}

{% endfor %}
{% endif %}

{{ _("Important Notice") }}

{{ _("This action will modify your wizard steps configuration. Make sure to backup your current steps before importing if you want to preserve them.") }}