{% 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 }}
{% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% if ACCESS.org_delete and not org.is_default %}

{% trans "Remove Organization" %}

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

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