{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Client Keys" %} | {{ block.super }}{% endblock %} {% block main %} {% if ACCESS.project_write %}
{% csrf_token %}
{% endif %}

{% trans "Client Keys" %}

To send data to Sentry you will need to configure an SDK with a client key (usually referred to as the SENTRY_DSN value). For more information on integrating Sentry with your application take a look at our documentation.

{% for key in key_list %}
{% trans "Details" %} {% if ACCESS.project_write %} {% if key.is_active %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %} {% if ACCESS.project_write %}
{% csrf_token %}
{% endif %}
{% if key.label %}
{{ key.label }}
{% else %}
{{ key.public_key }}
{% endif %}
{{ key.dsn_private }}
{{ key.dsn_public }}
{% blocktrans with 'https://github.com/getsentry/raven-js' as link %}Use your public DSN with browser-based clients such as raven-js.{% endblocktrans %}
{% endfor %}
{% endblock %}