{% extends "sentry/bases/explore.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{{ tag_key.get_label }} | {{ block.super }}{% endblock %} {% block inner %} {% paginator tag_values from request as tag_values %} {% querystring from request without sort as sort_querystring %}
{% blocktrans with sort_label as label %}Sort by: {{ label }}{% endblocktrans %}
{% trans "Previous" %} {% trans "Next" %}
{% if not tag_values.paginator.objects %}

{% blocktrans %}You dont seem to have any data recorded for this tag. For more information on how to send this information consult your client's documentation.{% endblocktrans %}

{% else %} {% for tag_value in tag_values.paginator.objects %} {% endfor %}
{{ tag_key.get_label }} {% trans "Last Seen" %} {% trans "Events Seen" %}
{{ tag_value.value }} {{ tag_value.last_seen|timesince }} {{ tag_value.times_seen|small_count }}
{% trans "Previous" %} {% trans "Next" %}
{% endif %} {% endblock %}