{% 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 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 ACCESS.team_delete %}

{% trans "Remove Team" %}

Removing this team will delete associated projects and events.

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