{# 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 %}{% blocktranslate %} Press the Upload button to upload your site to the following SFTP destination. {% endblocktranslate %}
| {% trans "Host" %} | {{ site_settings.sftp_host }} |
|---|---|
| {% trans "User" %} | {{ site_settings.sftp_user }} |
| {% trans "Path" %} | {{ site_settings.sftp_path }} |
| {% trans "Port" %} | {{ site_settings.sftp_port }} |