{% extends "sentry/bases/settings.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block bodyclass %} with-left-sidebar{% endblock %} {% block main %}
{% block inner %}
{% csrf_token %} {{ form|as_crispy_errors }}
{{ form.name|as_crispy_field }} {{ form.slug|as_crispy_field }} {{ form.platform|as_crispy_field }} {{ form.team|as_crispy_field }}
{% trans "Event Settings" %}
{{ form.resolve_age|as_crispy_field }} {{ form.scrub_data|as_crispy_field }} {{ form.scrub_ip_address|as_crispy_field }} {% if form.public %} {{ form.public|as_crispy_field }} {% endif %}
{% 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 %}
{% if not project.is_internal_project %} {% trans "Remove Project" %} {% else %}

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

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