{% 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 %} {% trans "Project Details" %} {% csrf_token %} {% if request.GET.success %} {% trans "Changes to your project were saved successfully." %} {% else %} {{ form|as_crispy_errors }} {% endif %} {% 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 %} {% trans "Save Changes" %} {% if not project.is_default_project %} {% trans "Remove Project" %} {% else %} {% trans "This project cannot be removed. It is used internally by the Sentry server." %} {% endif %} {% endblock %} {% endblock %} {% block sidebar %}
{% 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 %}
Origin
Referer
{% trans "This project cannot be removed. It is used internally by the Sentry server." %}