{% extends "sentry/bases/settings.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_features %} {% load sentry_helpers %} {% load sentry_plugins %} {% block wrapperclass %} {{ block.super }} show-rightbar settings white-bg{% endblock %} {% block header_nav %} {% endblock %} {% block header_action %} Project Settings {% endblock %} {% block main %}

{% trans "Project Settings" %}

{% csrf_token %} {{ form|as_crispy_errors }}

{% trans "Project Details" %}

{{ form.name|as_crispy_field }} {{ form.slug|as_crispy_field }} {{ form.team|as_crispy_field }}

{% trans "Email" %}

{{ form.mail_subject_prefix|as_crispy_field }}

{% trans "Event Settings" %}

{{ form.default_environment|as_crispy_field }} {{ form.resolve_age|as_crispy_field }}

Note: Enabling auto resolve will immediately resolve anything that has not been seen within this period of time. There is no undo!

{{ form.scrub_data|as_crispy_field }} {{ form.scrub_defaults|as_crispy_field }} {{ form.sensitive_fields|as_crispy_field }} {{ form.safe_fields|as_crispy_field }} {{ form.scrub_ip_address|as_crispy_field }}

{% trans "Client Security" %}

{% with form.origins as field %}

{% blocktrans with 'https://github.com/getsentry/raven-js' as link %}Configure origin URLs which Sentry should accept events from. This is used for communication with clients like raven-js.{% endblocktrans %}
{% blocktrans %}This will restrict requests based on the Origin and Referer headers.{% endblocktrans %}

{{ field|as_crispy_field }} {% endwith %} {{ form.scrape_javascript|as_crispy_field }} {{ form.token|as_crispy_field }} {{ form.token_header|as_crispy_field }} {{ form.blacklisted_ips|as_crispy_field }}

{% trans "Remove Project" %}

{% if not ACCESS.project_delete %}

{% trans "You do not have the required permission to remove this project." %}

{% elif project.is_internal_project %}

{% trans "This project cannot be removed. It is used internally by the Sentry server." %}

{% else %}

{% trans "Remove Project" %} Remove the {{ project.slug }} project and all related data.
Careful, this action cannot be undone.

{% endif %}
{% endblock %} {% block sidebar %} {% with project|get_plugins as plugins %} {% endwith %} {% endblock %}