{% extends "base.html" %} {% block content %}
{% with staff_nav_active="teams" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% set breadcrumbs = [ {"name": "Staff", "href": "/staff"}, {"name": "Teams", "href": "/staff/teams"}, {"name": team.name, "href": "/staff/teams/" ~ team.uuid}, {"name": "Members", "href": "/staff/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="/staff/teams/", cancel_href_value=team.uuid, cancel_href_suffix="/members" %} {% include "partials/form_actions.html" %} {% endwith %}
{% endblock %}