{% extends "sentry/bases/explore.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}Explore Code | {{ block.super }}{% endblock %} {% block inner %}
{% paginator tag_list from request as tag_list %} {% querystring from request without sort as sort_querystring %} {% if not tag_list.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 %}{% trans "Path" %} | {% trans "Last Seen" %} | {% trans "Events Seen" %} |
---|---|---|
{% if selection == 'functions' %}
{% url 'sentry-explore-code-details-by-function' organization.slug project.slug tag.id as link %}
{{ tag.data.function }} {{ tag.data.filename }} {% else %} {% url 'sentry-explore-code-details' organization.slug project.slug tag.id as link %} {{ tag.data.filename }} {% endif %} |
{{ tag.last_seen|timesince }} | {{ tag.times_seen|small_count }} |