{% extends "sentry/projects/base.html" %} {% 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 %} {% if request.GET.success %}
    {% trans "Changes to your project were saved successfully." %}
    {% else %} {% if form.errors %}
    {% trans "Please correct the errors below." %}
    {% endif %} {% endif %}
    {% csrf_token %}
    {% for field in form %} {% if field.name != 'origins' %} {% include "sentry/partial/_form_field.html" %} {% endif %} {% endfor %}
    {% trans "Client Security" %}
    {% with form.origins as field %}

    {% blocktrans with 'https://github.com/lincolnloop/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 with 'http://en.wikipedia.org/wiki/Cross-origin_resource_sharing' as link %}For more information check out the Wikipedia page on CORS.{% endblocktrans %}

    {% trans "List one URL per line." %}
    {{ field }} {% if field.errors %} {% for error in field.errors %}
    {{ error }}
    {% endfor %} {% endif %}
    {% 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 %}
    {% if member_list or can_add_member %} {% if project.team %} {% url sentry-manage-team project.team.slug as link %}

    {% blocktrans with project.team.name as team_name %}You can manage project membership on the team settings page for {{ team_name }}.{% endblocktrans %}

    {% endif %} {% if member_list %} {% for member, user in member_list %} {% endfor %}
    {% trans "User" %} {% trans "Access" %}
    {{ user.username }}
    {{ user.email }}
    {{ member.get_type_display }}
    {% else %}

    {% trans "There are no members of this project." %}

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