{# 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/rsync/includes/breadcrumbs.html" %} {% endblock %} {% block content %} {% if rendered %} {% if ok and dry_run %} {% blocktranslate %} Dry run complete. Press Upload to finish uploading your site with rsync. {% endblocktranslate %} {% elif ok and not dry_run %}

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

{% 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 %}
{% if dry_run %} {% trans "Upload with rsync" %} {% else %} {% trans "Upload again" %} {% endif %} {% trans "Back to site settings" %}
{% else %}

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

{% trans "Destination" %} {{ site_settings.rsync_destination }}
{% 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" %} {% trans "Back to site settings" %}
{% endif %} {% endblock %}