{% extends "sentry/bases/stream.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% 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 EVENTS_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." %}
{% recent_alerts from project as recent_alerts %} {% if recent_alerts %} {% endif %}
{% trans "Previous" %} {% trans "Next" %}
{% endblock %}