{% extends "sentry/bases/modal.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Team Settings" %} | {{ block.super }}{% endblock %} {% block breadcrumb_inner %} {{ block.super }}
  • Settings
  • {% endblock %} {% block content %}

    {{ team.name }} {% trans "Team Settings" %}

    {% csrf_token %} {% if form.errors %}
    {% trans "Please correct the errors below." %}
    {% endif %} {{ form|as_crispy_errors }}
    {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
    {% if form.owner %}

    If you wish to transfer ownership of this project, enter the new owner's username:

    {{ form.owner|as_crispy_field }}
    {% endif %}
    {% if ACCESS.team_delete %}

    {% trans "Remove Team" %}

    Removing this team will delete associated projects and events.

    {% trans "Remove Team" %}
    {% endif %} {% endblock %}