{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Preview nginx configurations" %}

{% if config_previews %} {% if missing_certificates %} {% endif %} {% if can_apply %}
{% csrf_token %}

{% trans 'Apply the selected configurations and reload nginx.' %}

{% csrf_token %}
{{ subdomain_form.managed_subdomains.label_tag }} {{ subdomain_form.managed_subdomains }} {% if subdomain_form.managed_subdomains.errors %}
{{ subdomain_form.managed_subdomains.errors }}
{% endif %}
{% if subdomain_mixed %}

{% trans "Selected configurations currently have different subdomain prefixes; updating will overwrite them." %}

{% endif %}

{{ subdomain_form.managed_subdomains.help_text }}

{% csrf_token %}

{% trans 'Provision certificates for the selected configurations before applying HTTPS (Self-signed, Certbot HTTP-01, or GoDaddy DNS-01).' %}

{% endif %} {% for preview in config_previews %}

{{ preview.config }}

{% for file in preview.files %}
{% endfor %}
{% endfor %} {% else %}

{% trans "No configurations were selected for preview." %}

{% endif %}

← {% trans "Back to site configurations" %}

{% endblock %}