{% extends 'setup/layout.html' %} {% load i18n %} {% block header %}

{% trans "Instance Configuration" %}

{% trans "Make sure everything looks right before proceeding" %}
{% endblock %} {% block panel %}
{% if warnings.debug %}
{% blocktrans trimmed %} You are running BookWyrm in debug mode. This should never be used in a production environment. {% endblocktrans %}
{% endif %} {% if warnings.invalid_domain %}
{% blocktrans trimmed %} Your domain appears to be misconfigured. It should not include protocol or slashes. {% endblocktrans %}
{% endif %} {% if warnings.protocol %}
{% blocktrans trimmed %} You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production. {% endblocktrans %}
{% endif %}

{% trans "Settings" %}

{% trans "Instance domain:" %}
{{ info.domain }}
{% trans "Protocol:" %}
{% if info.use_https %} https {% else %} http {% endif %}
{% trans "Software version:" %}
{{ info.version }}
{% trans "Using S3:" %}
{{ info.use_s3|yesno }}

{% trans "Display" %}

{% trans "Default interface language:" %}
{{ info.language }}
{% trans "Email sender:" %}
{{ info.email_sender }}
{% trans "Enable preview images:" %}
{{ info.preview_images|yesno }}
{% trans "Enable image thumbnails:" %}
{{ info.thumbnails|yesno }}

{% trans "Does everything look right?" %}

{% blocktrans trimmed %} This is your last chance to set your domain and protocol. {% endblocktrans %}

{% blocktrans trimmed %} You can change your instance settings in the .env file on your server. {% endblocktrans %} {% trans "View installation instructions" %}

{% endblock %}