{% extends "sentry/teams/list.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% blocktrans with team.name as name %}Manage Team: {{ name }}{% endblocktrans %} | {{ block.super }}{% endblock %} {% block bodyclass %} with-left-sidebar{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {{ team.name }}
  • {% endblock %} {% block main %}
    {% block inner %}
    {% csrf_token %} {% if form.errors %}
    {% trans "Please correct the errors below." %}
    {% endif %} {{ form|as_crispy_errors}}
    {% for field in form %} {% include "sentry/partial/_form_field.html" %} {% endfor %}
    {% if can_remove_team %} {% trans "Remove Team" %} {% else %}
    {% trans "You cannot remove this team because it has projects assigned to it" %}
    {% endif %}
    {% endblock %}
    {% endblock %} {% block sidebar %} {% endblock %}