{% extends "base.html" %} {% load scoped_tags %} {% block title %}Teams{% endblock %} {% block page_title %}Teams{% endblock %} {% block page_subtitle %}Scopes, membership, and sharing boundaries (Layer 4){% endblock %} {% block layer_indicator %}L4 Tenancy{% endblock %} {% block content %} {% if teams %}
{% for team in teams %}

{{ team.name }}

{% if team.is_owner %} Owner {% endif %}

{{ team.description|default:"No description"|truncatewords:15 }}

{{ team.member_count }} member{{ team.member_count|pluralize }} {{ team.service_count }} service{{ team.service_count|pluralize }}
{% endfor %}
{% else %} {% include "components/_empty_state.html" with title="No teams" message="You're not a member of any teams yet." %} {% endif %} {% endblock %}