{% if config_previews %}
{% if missing_certificates %}
{% blocktrans count missing=missing_certificates|length %}
{{ missing }} configuration requires a certificate before HTTPS can be applied.
{% plural %}
{{ missing }} configurations require certificates before HTTPS can be applied.
{% endblocktrans %}
{% endif %}
{% if can_apply %}
{% endif %}
{% for preview in config_previews %}
{{ preview.config }}
{% for file in preview.files %}
{{ file.label }} {{ file.path }}
{{ file.status }}
{% if file.content %}
{{ file.content }}
{% else %}
{% trans "No content available." %}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
{% trans "No configurations were selected for preview." %}