{% extends "profile_base.html" %} {% set profile_nav_active = "teams" %} {% block profile_content %}
{% set breadcrumbs = [ {"name": current_user.name | display_name(current_user.username), "href": "/profile"}, {"name": "Teams", "href": "/profile/teams"}, {"name": team.name, "href": "/profile/teams/" ~ team.uuid}, {"name": "Members", "href": "/profile/teams/" ~ team.uuid ~ "/members"}, {"name": "Add"} ] %} {% include "partials/breadcrumbs.html" %}

Add member

{% include "partials/flash.html" %}
Enter a user UUID, username, or email address.
Role
Standard access to team repositories.
Full control over team settings and members.
{% with primary_label="Add member", cancel_href_prefix="/profile/teams/", cancel_href_value=team.uuid, cancel_href_suffix="/members" %} {% include "partials/form_actions.html" %} {% endwith %}
{% with modal_id="confirm-add-owner", modal_title="Add owner", modal_body="Add this member as an owner?", modal_confirm_text="Add owner", modal_desc="Owners can manage team settings and members.", modal_manual_submit=true %} {% include "partials/confirm_modal.html" %} {% endwith %} {% endblock %} {% block scripts %} {% endblock %}