{% extends "sentry/explore/code/list_tag.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %} {% if selection == 'functions' %} {{ tag.data.function }} from {% endif %} {{ tag.data.filename }} | {{ block.super }} {% endblock %} {% block bodyclass %} with-sidebar{% endblock %} {% block sidebar %}
{% trans "Code Details" %}
{% trans "Filename:" %}
{{ tag.data.filename }}
{% if selection == 'functions' %}
{% trans "Function:" %}
{{ tag.data.function }}
{% endif %}
First Seen:
{{ tag.first_seen|timesince }}
Last Seen:
{{ tag.last_seen|timesince }}
Number of Events:
{{ tag.times_seen|small_count }}
{% endblock %} {% block main %} {% paginator event_list from request as event_list per_page EVENTS_PER_PAGE %}

{{ tag.data.filename }}{% if selection == 'functions' %} {{ tag.data.function }}{% endif %}

{% trans "Previous" %} {% trans "Next" %}
{% trans "Previous" %} {% trans "Next" %}
{% endblock %}