{% extends "sentry/teams/base.html" %} {% load i18n %} {% block title %}{% trans "Team List" %} | {{ block.super }}{% endblock %} {% block bodyclass %}{% endblock %} {% block heading %} {% trans "Team List" %} {% endblock %} {% block page_header %} {% endblock %} {% block inner %} {% if TEAM_LIST %}

{% trans "The following is a list of teams that you are a member of." %}

{% for team in TEAM_LIST %} {% endfor %}
{% trans "Name" %} {% trans "Owner" %}
{{ team.name }}
{{ team.owner.username }}
{% else %} {% if can_create_teams %}
You are not a member of any teams. Would you like to create a new team?
{% else %}
{% trans "You are not a member of any teams. Ask an administrator to add you to a team." %}
{% endif %} {% endif %} {% endblock %}