{% extends "sentry/teams/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "New Team" %} | {{ block.super }}{% endblock %} {% block main %}

{% blocktrans %}Teams in Sentry represent a collection of users and projects. They're the top level component of your organization allowing you to control access and scope of events.{% endblocktrans %}


{% csrf_token %}
{{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% endblock %}