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

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

{% endif %} {% endblock %}