{% extends "sentry/projects/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% blocktrans with project.name as name %}Manage Project: {{ name }}{% endblocktrans %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {{ project.name }}
  • {% endblock %} {% block bodyclass %} with-left-sidebar{% endblock %} {% block main %}
    {% block inner %}
    {% 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' %} {{ field|as_crispy_field }} {% endif %} {% endfor %}
    {% 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_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 %} {% with project|get_plugins as plugins %} {% if plugins %} {% endif %} {% endwith %} {% endblock %}