{% extends 'orga/base.html' %} {% load compress %} {% load copyable %} {% load i18n %} {% load static %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %} {% block content %}

{% trans "Administrator information" %}

{% if settings.DEBUG %}
{% 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 "System" %}

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 %} {% endif %}

{% trans "Links" %}

{% endblock %}