{% extends "sentry/projects/manage.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Edit API Key" %} | {{ block.super }}{% endblock %} {% block inner %}
{% csrf_token %} {{ form|as_crispy_errors }}
Details {{ form.label|as_crispy_field }}
{% if key.user %}{{ key.user }}{% else %}—{% endif %}
{{ 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 }}
{% blocktrans with 'https://github.com/getsentry/raven-js' as link %}Use your public DSN with insecure clients such as raven-js.{% endblocktrans %}
{{ key.dsn_public }}
{{ key.public_key }}
{{ key.secret_key }}
Permissions

Permissions are fairly wide reaching {{ form.roles|as_crispy_field }}

{% endblock %}