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

Teams

{% if is_admin %} + New {% endif %}
{% if teams %} {% for team in teams %}
{% if team.has_avatar %} {% else %} {{ team.initials }} {% endif %}
{{ team.name }} {% if team.visibility == "public" %} public {% else %} private {% endif %}
{{ team.member_count }} member{% if team.member_count != 1 %}s{% endif %}
{% if is_admin or team.is_team_admin %} Settings {% endif %} {% if team.slug %} {% if team.visibility == "public" %} View {% elif team.invite_token %} View {% endif %} {% endif %}
{% endfor %} {% else %}
👥
No teams yet.{% if is_admin %} Create one to collaborate with your team.{% endif %}
{% if not is_admin %}

Teams are created by administrators. Ask your admin to create one and add you as a member.

{% endif %}
{% endif %}
{% endblock %}