{% extends "sentry/layout.html" %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Status" %} | {{ block.super }}{% endblock %} {% block heading %}{% trans "Status" %}{% endblock %} {% block content %}
{% if environment %}
Server Version {% sentry_version %}
Python Version {{ python_version }}
Configuration File {{ environment.config }}
Uptime {{ environment.start_date|timesince }} (since {{ environment.start_date|date }})
{% else %}

Environment not found (are you using the builtin Sentry webserver?).

{% endif %} {% for key, value in config %} {% endfor %}
{{ key }}
{{ value|pprint }}
{% if extensions %} {% for key, value in extensions %} {% endfor %}
{{ key }} {{ value }}
{% else %}

No extensions registered.

{% endif %} {% if views %} {% for key, value in views %} {% endfor %}
{{ key }} {{ value }}
{% else %}

No views registered.

{% endif %} {% if processors %} {% for key, value in processors %} {% endfor %}
{{ key }} {{ value }}
{% else %}

No event processors registered.

{% endif %} {% for key, value in modules %} {% endfor %}
{{ key }} {{ value }}
{% if worker_status %}
{% if background_procs %}
{% else %}

No information available.

{% endif %} {% for queue, num_pending in pending_tasks %} {% endfor %}
Queue Pending Tasks
{{ queue }} {{ num_pending }}
{% endif %}
{% endblock %}