{% extends "sentry/bases/team.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Settings" %} | {{ block.super }}{% endblock %} {% block team_settings_nav %} class="active"{% endblock %} {% block inner %}
{% csrf_token %} {% if form.errors %}
{% trans "Please correct the errors below." %}
{% endif %} {{ form|as_crispy_errors }}
{% for field in form %} {% if field.name != 'owner' %} {{ field|as_crispy_field }} {% endif %} {% 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 can_remove_team %} {% trans "Remove Team" %} {% else %}
{% trans "You cannot remove this team because it has projects assigned to it" %}
{% endif %}
{% endblock %}