{% extends "sentry/bases/organization.html" %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Audit Log" %} | {{ block.super }}{% endblock %} {% block org_auditlog_nav %}active{% endblock %} {% block main %}

Audit Log

{% paginate audit_log_queryset from request as entry_list per_page 50 %} {% if entry_list.objects %}

{% blocktrans %}Sentry keeps track of important events within your organization.{% endblocktrans %}

{% for entry in entry_list.objects %} {% endfor %}
Member Action IP Time
{{ entry.get_event_display }} {{ entry.ip_address }} {{ entry.datetime|timesince }}
{{ event_list.paging }} {% else %}

It looks like nothing has really happened within your organization. Check back later!

{% endif %} {% endblock %}