{% blocktrans trimmed %}
You are running pretalx in development mode. Please STOP
and set the DEBUG variable to False if this page is in any way reachable
from the internet.
{% endblocktrans %}
{% endif %}
{% trans "Settings" %}
{% if settings.CONFIG_FILES %}
{% trans "Settings have been loaded from:" %} {{ settings.CONFIG_FILES|join:', ' }}
{% else %}
{% trans "No settings files were found, all settings are either set to their default value or have been read from environment variables." %}
{% endif %}
{% trans "Database" %}
{% trans "Driver" %}: {{ settings.DATABASES.default.ENGINE|copyable }}
{% trans "Name" %}: {{ settings.DATABASES.default.NAME|copyable }}
{% trans "Files" %}
{% trans "Log" %}: {{ settings.LOG_DIR|copyable }}
{% trans "Static files" %}: {{ settings.STATIC_ROOT|copyable }}
{% trans "Media files" %}: {{ settings.MEDIA_ROOT|copyable }}
{% trans "Mails" %}
{% trans "Host" %}: {{ settings.EMAIL_HOST|copyable }}
{% trans "Port" %}: {{ settings.EMAIL_PORT|copyable }}
{% trans "User" %}: {{ settings.EMAIL_USER|copyable }}
{% trans "Password" %}: {% if settings.EMAIL_PASSWORD %}{% trans "An email password has been set." %}{% else %}{% trans "No email password has been set." %}{% endif %}
{% trans "System" %}
{% trans "Executable" %}: {{ executable|copyable }}
{% trans "Plugins" %}: {% if settings.PLUGINS %}
{% for plugin in settings.PLUGINS %}
{{ plugin|copyable }}
{% endfor %}{% else %}–{% endif %}
{% if settings.ADMINS %}{% trans "On errors, emails will be sent to:" %}{{ settings.ADMINS|join:', ' }}{% else %}{% trans "On errors, no emails will be sent." %}{% endif %}
redis
{% if not settings.HAS_REDIS %}
{% trans "No redis server has been configured." %}
{% else %}
{% trans "Redis is used as cache backend:" %} {{ settings.CACHES.redis.location|copyable }}
{% endif %}
Celery
{% if not settings.HAS_CELERY %}
{% trans "No celery workers have been configured." %}
{% else %}
{% trans "Broker" %}: {{ settings.CELERY_BROKER_URL|copyable }}
{% trans "Backend" %}: {{ settings.CELERY_RESULT_BACKEND|copyable }}
{% trans "Current queue length" %}: {{ queue_length }}