{% extends "sentry/layout.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{{ project.name }} | {{ block.super }}{% endblock %} {% block meta %} {{ block.super }} {% endblock %} {% block breadcrumb %}{% endblock %} {% block sidebar %}
{% trans "Loading historical data..." %}
{% if request.user.is_authenticated %} {% querystring from request without bookmarks as bookmark_querystring %}
{% trans "Bookmarks" %}
{% endif %} {% for filter in filters %} {% if filter.show_label %}
{% trans filter.label %}
{% endif %}
{{ filter.render }}
{% endfor %}
{% endblock %} {% block main %} {% paginator event_list from request as event_list per_page MESSAGES_PER_PAGE %} {% querystring from request without sort as sort_querystring %} {% querystring from request without since as since_querystring %}
{% trans "Resolve Feed" %}
{% trans "Pause Updates" %}
{% blocktrans with sort_label as label %}Sort by: {{ label }}{% endblocktrans %}
{% if from_date %} {% if not to_date %} Since: {{ from_date|date:"M jS" }} {% else %} Between: {{ from_date|date:"M jS" }} and {{ to_date|date:"M jS" }} {% endif %} {% else %} {% if to_date %} Before: {{ to_date|date:"M jS" }} {% else %} Between: The Past and The Present {% endif %} {% endif %}
{% trans "Previous" %} {% trans "Next" %}
{% for key, value in request.GET.iteritems %} {% if key != df and key != tf and key != dt and key != tt and key != page %} {% endif %} {% endfor %}
to
{% trans "All events are represented in UTC time." %}
{% handle_before_events request event_list.paginator.objects %}
{% trans "Previous" %} {% trans "Next" %}
{% endblock %}