{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Client Keys" %} | {{ block.super }}{% endblock %} {% block main %} {% if can_add_key %} {% trans "Generate New Key" %} {% endif %}

{% trans "Client Keys" %}

{% for key in key_list %} {% endfor %}
{% trans "Client Key" %}
{% if key.label %}
{{ key.label }}
{% else %}
{{ key.public_key }}
{% endif %}
{% if key.can_edit %} {% if key.is_active %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %} {% if key.can_remove %}
{% csrf_token %}
{% endif %}
{% endblock %}