{% 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": "Create"} ] %} {% include "partials/breadcrumbs.html" %}

Create team

{% include "partials/flash.html" %}
The display name shown across the team pages.
Used in team URLs and API references. Must be unique on the site.
{% with primary_label="Create team", cancel_href="/profile/teams" %} {% include "partials/form_actions.html" %} {% endwith %}
{% endblock %}