{% 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 }}
  • /
  • {% trans "Manage" %}
  • {% endblock %} {% block main %}
    {% block inner %}

    {% trans "Here you can edit project information, as well as control the access list for a project with fine-grained permissions." %}


    {% 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 %} {% include "sentry/partial/_form_field.html" %} {% endfor %}
    {% if PROJECT_ID != project.pk %} {% trans "Remove Project" %} {% else %} {% trans "Cannot remove default project" %} {% endif %}
    {% for member, user in member_list %} {% endfor %}
    {% trans "User" %} {% trans "Access" %}
    {{ user.username }}
    {{ user.email }}
    {{ member.get_type_display }}
    {% if key %} {% with key.get_dsn as project_dsn %}

    {% trans "To start sending events, configure your client with the following DSN value:" %}

    {{ project_dsn }}

    {% trans "Choose your platform for quick setup instructions:" %}

    {% include "sentry/partial/_client_config.html" %}

    {% blocktrans with 'http://sentry.readthedocs.org' as link %}For more information, please see the documentation.{% endblocktrans %}

    {% endwith %} {% endif %} {% endblock %}
    {% endblock %}