{% 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 with link='https://docs.sentry.io/hosted/learn/context/' %}Each event in Sentry may be annotated with various tags (key and value pairs). Learn how to add custom tags.{% endblocktrans %}

{% csrf_token %} {{ form|as_crispy_errors }}
{% for tag in tag_list %} {% endfor %}
Tags  
{{ tag.get_label }} ({{ tag.key }})
{{ tag.values_seen|small_count }} unique value(s)
{% comment %} Make sure this onclick is wrapped in single quotes and not double quotes becuase the value is being JSON encoded and can't put double quotes within double quotes. {% endcomment %}
{% else %}

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

{% endif %} {% endblock %}