{% extends "sentry/bases/organization.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block org_settings_nav %}active{% endblock %} {% block main %}

Organization Settings

{% csrf_token %} {% if form.errors %}
{% trans "Please correct the errors below." %}
{% endif %} {{ form|as_crispy_errors }} General {{ form.name|as_crispy_field }} {{ form.slug|as_crispy_field }} Membership {{ form.default_role|as_crispy_field }} {{ form.allow_joinleave|as_crispy_field }} Security & Privacy {{ form.enhanced_privacy|as_crispy_field }}
{% if ACCESS.org_delete and not organization.is_default %}

{% trans "Remove Organization" %}

Removing this organization will delete all data including projects and their associated events.

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