{% extends "sentry/teams/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% block sidebar %}
{% trans "About Access Groups" %}

{% blocktrans %}This page lists access groups within your team. An access group is an alternative to using team-wide membership, which allows you to restrict access to only specific projects.{% endblocktrans %}

{% endblock %} {% block bodyclass %} with-sidebar{% endblock %} {% block inner %} {% if group_list %} {% for group in group_list %} {% endfor %}
{% trans "Name" %} {% trans "Access Type" %} {% trans "Actions" %}
{{ group.name }}{% if group.managed %} ({% trans "automatically managed" %}){% endif %} {{ group.get_type_display }} {% trans "Remove" %}
{% else %}

{% trans "You have not created any access groups yet." %}

{% endif %} {% endblock %}