{% extends "base.html" %} {% block title %}Teams - {{ org_display_name }} - Guts{% endblock %} {% block content %}
{{ org_display_name }} / Teams

Teams

Manage team access and permissions

{% for team in teams %}

{{ team.name }}

{{ team.permission }}
{% if let Some(desc) = team.description %}

{{ desc }}

{% else %}

No description

{% endif %}
{{ team.member_count }} members {{ team.repo_count }} repos
{% endfor %} {% if teams.is_empty() %}

No teams yet

Create one using the API

{% endif %}
{% endblock %}