{% extends "sentry/bases/explore.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}Explore Code | {{ block.super }}{% endblock %} {% block main %} {% paginator tag_list from request as tag_list %} {% 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_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 %} {% for tag in tag_list.paginator.objects %} {% endfor %}
{% 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 }}
{% trans "Previous" %} {% trans "Next" %}
{% endif %} {% endblock %}