{% extends "sentry/projects/manage.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Manage Tags" %} | {{ block.super }}{% endblock %} {% block inner %} {% if form %}

{% 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 }}
{% trans "Stream Filters" %}

{% blocktrans %}Filters allow you to do limited searching on the stream view based on a tag's value. They are selectable via the sidebar on the stream.{% endblocktrans %}

{{ form.filters|as_crispy_field }}
{% trans "Stream Annotations" %}

{% blocktrans %}Annotations display the total number of unique values that have been seen for an event. They are rendered on the stream with each individual event.{% endblocktrans %}

{{ form.annotations|as_crispy_field }}
{% else %}

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

{% endif %} {% endblock %}