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

{% trans "Configure tags which you want to enable filters for." %}

{% trans "Note: You can only configure tags which have already been seen." %}

{% csrf_token %} {{ form|as_crispy_errors }}
{% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% else %}

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

{% endif %} {% endblock %}