{% extends "sentry/bases/admin.html" %} {% block admin-nav-status %} class="active"{% endblock %} {% load i18n %} {% load sentry_helpers %} {% get_sentry_version %} {% block title %}{% trans "Server Status" %} | {{ block.super }}{% endblock %} {% block inner %} {% if environment %}
{% trans "Server Version" %} {{ sentry_version.current }} {% if sentry_version.update_available %} {% endif %}
{% trans "Python Version" %} {{ python_version }}
{% trans "Configuration File" %} {{ environment.config }}
{% trans "Uptime" %} {{ environment.start_date|timesince }} (since {{ environment.start_date|date }})
{% else %}

{% trans "Environment not found (are you using the builtin Sentry webserver?)." %}

{% endif %} {% for key, value in config %} {% endfor %}
{{ key }}
{{ value|pprint }}
{% endblock %}