{% 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 }}
{% for field in form %} {% if field.name != 'origins' and field.name != 'public' and field.name != 'resolve_age' %} {{ field|as_crispy_field }} {% endif %} {% endfor %}
{% trans "Event Settings" %}
{{ form.resolve_age|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 %}