{% extends "sentry/projects/manage.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Edit API Key" %} | {{ block.super }}{% endblock %} {% block main %}
{% csrf_token %} {{ form|as_crispy_errors }}

Details

{{ form.label|as_crispy_field }}
{{ key.date_added|timesince }}

Credentials

{% blocktrans %}Your credentials are bound to public and secret key (though both should be considered semi-secret). Different clients will require different credentials, so make sure you check the documentation before plugging things in.{% endblocktrans %}

{{ 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 %}
{{ key.public_key }}
{{ key.secret_key }}
{{ key.project_id }}
{% endblock %}