{% extends "sentry/groups/details.html" %} {% load i18n %} {% load sentry_helpers %} {% block inner %} {% paginate unique_tags from request as tag_list per_page 25 %} {% if tag_list.objects %} {{ tag_list.paging }} {% for tag_value, times_seen, first_seen, last_seen in tag_list.objects %} {% endfor %}
{{ tag_label }} {% trans "Times Seen" %} {% trans "First Seen" %} {% trans "Last Seen" %}
{{ tag_value }} {{ times_seen|small_count }} {% if first_seen %}{{ first_seen|timesince }}{% else %}n/a{% endif %} {% if last_seen %}{{ last_seen|timesince }}{% else %}n/a{% endif %}
{{ tag_list.paging }} {% else %}

{% trans "There are no records recorded for this event." %}

{% endif %} {% endblock %}