{% extends "profile_base.html" %} {% set profile_nav_active = "teams" %} {% set profile_team_subnav_active = "overview" %} {% block profile_content %}
{% with breadcrumbs=[ {"name": current_user.name | display_name(current_user.username), "href": "/profile"}, {"name": "Teams", "href": "/profile/teams"}, {"name": team.name} ] %} {% include "partials/breadcrumbs.html" %} {% endwith %}
{% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
Team details
The display name shown on team pages.
Used in the team URL and API references.
{% if can_edit %}
{% with primary_label="Save changes", secondary_label="Reset", secondary_type="reset" %} {% include "partials/form_actions.html" %} {% endwith %}
{% endif %}
Team metadata
{% if is_owner %}
Owner
{% endif %}
{% with copy_input_id="profile-team-uuid", copy_input_value=team.uuid, copy_input_prefix="UUID" %} {% include "partials/copy_input.html" %} {% endwith %}
Team page
/teams/{{ team.slug }}
Created
{{ team.created_at | humantime }}
{% endblock %}