{% 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 }}
    {% endblock %}
    {% endblock %}