{% extends "orga/base.html" %} {% load compress %} {% load copyable %} {% load i18n %} {% load static %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{% translate "Administrator information" %} :: {% endblock extra_title %} {% block content %}
{% translate "Your pretalx version is:" %} {{ pretalx_version|copyable }}. {% blocktranslate trimmed with url="/orga/admin/update/" %} You can check for updates here. {% endblocktranslate %}
{% if settings.CONFIG_FILES %}
{% translate "Settings have been loaded from:" %}
{% for config_file in settings.CONFIG_FILES %}
{{ config_file|copyable }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% else %}
{% translate "No settings files were found, all settings are either set to their default value or have been read from environment variables." %}
{% endif %}
{{ settings.DATABASES.default.ENGINE|copyable }}
{{ settings.DATABASES.default.NAME|copyable }}
{{ settings.LOG_DIR|copyable }}
{{ settings.STATIC_ROOT|copyable }}
{{ settings.MEDIA_ROOT|copyable }}
{{ settings.EMAIL_HOST|copyable }}
{{ settings.EMAIL_PORT|copyable }}
{{ settings.EMAIL_HOST_USER|copyable }}
{{ executable|copyable }}
{{ admin.0|copyable }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% else %}
{% translate "On errors, no emails will be sent." %}
{% endif %}
{{ settings.CACHES.redis.LOCATION|copyable }}
{% endif %}
{{ settings.CELERY_BROKER_URL|copyable }}
{{ settings.CELERY_RESULT_BACKEND|copyable }}