{% extends "sentry/projects/manage.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Tags" %} | {{ block.super }}{% endblock %} {% block main %}

{% trans "Tags" %}

{% if tag_list %}

{% blocktrans %}Each event in Sentry may be annotated with various tags (key and value pairs). For more information on how send additional tags, see your client's documentation.{% endblocktrans %}

{% csrf_token %} {{ form|as_crispy_errors }} {% for tag in tag_list %} {% endfor %}
Tags Show in
Filters
Show in
Annotations
 
{{ tag.get_label }}
{{ tag.values_seen|small_count }} unique value(s)
{% else %}

{% trans "We have not yet recorded any tags for this project." %}

{% endif %} {% endblock %}