{% extends "dashboard_base.html" %} {% block title %}{{ team_name }} Settings — calrs{% endblock %} {% block dashboard_content %}

{{ team_name }}

{% if visibility == "public" %} public {% else %} private {% endif %}

Team settings — team admins can edit these.

{% if success %}
{{ success }}
{% endif %} {% if visibility == "public" and team_slug %}

Anyone can book via this link.

Open ↗
{% elif visibility == "private" and invite_token %}

Share this link to give people access to this private team's booking page.

Open ↗
{% endif %}
{% if team_has_avatar %} {% else %} {{ team_initials }} {% endif %}
{% if team_has_avatar %}
{% endif %}

Profile

Used in the team URL: /team/{{ team_slug }}
Shown on the team's public booking page. Supports **bold**, *italic*, and [links](url).
Visibility
Public teams are listed on the team profile page. Private teams require an invite link to access.

Members

Manage who belongs to this team. Add individual users or link OIDC groups for automatic sync.

{% for m in members %}
{% if m.has_avatar %} {% else %} {{ m.initials }} {% endif %}
{{ m.name }} {% if m.source == "group" %}OIDC{% endif %} {% if m.source != "group" %} {% endif %}
{% endfor %} {% for g in linked_groups %}
{{ g.name }} {% for m in g.members %} {% if loop.index0 < 6 %} {% if m.has_avatar %}{% else %}{{ m.initials }}{% endif %} {% endif %} {% endfor %} {% if g.member_count > 6 %} +{{ g.member_count - 6 }} {% endif %} OIDC group
{% endfor %}

Danger zone

Permanently delete this team. Event types will be unlinked (not deleted). This cannot be undone.

{% endblock %}