{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "admin/base_site.html" %} {% load i18n %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% include "admin/koriander/sitesettings/includes/breadcrumbs.html" %} {% endblock %} {% block content %} {% if rendered %} {% if dry_run and ok %} {% blocktranslate %} Dry run complete. Press Upload now to finish uploading your site with SFTP. {% endblocktranslate %} {% elif dry_run and not ok %} {% blocktranslate %} Encountered the below errors during the dry run. {% endblocktranslate %} {% elif not dry_run and ok %}

{% trans "Your site has been successfully uploaded with SFTP." %}

{% else %}

{% trans "Could not upload your site." %}

{% endif %} {% if result %} {% if dry_run %}

{% trans "Upload log (dry run)" %}

{% else %}

{% trans "Upload log" %}

{% endif %} {% include "admin/koriander/includes/render_result.html" %} {% endif %}
{% csrf_token %}
{% if dry_run and ok %} {% endif %} {% trans "Back to site settings" %}
{% else %}

{% blocktranslate %} Press the Upload button to upload your site to the following SFTP destination. {% endblocktranslate %}

{% if site_settings.sftp_port %} {% endif %}
{% trans "Host" %} {{ site_settings.sftp_host }}
{% trans "User" %} {{ site_settings.sftp_user }}
{% trans "Path" %} {{ site_settings.sftp_path }}
{% trans "Port" %} {{ site_settings.sftp_port }}
{% csrf_token %} {% if form.show_confirm_overwrite %}

{% trans "Warning: this destination already contains files. Confirm that you want to replace all files." %}

{% endif %} {{ form }}
{% trans "Back to site settings" %}
{% endif %} {% endblock %}