{% 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": "Repos", "href": "/profile/teams/" ~ team.uuid ~ "/repos"}, {"name": "Create"} ] %} {% include "partials/breadcrumbs.html" %}

Create repo

{% include "partials/flash.html" %}
{% set can_edit = true %} {% set is_team_repo = true %} {% set slug_check_url = "/api/v1/teams/" ~ team.uuid ~ "/check-repo-slug" %} {% set slug_feedback_id = "repo-slug-feedback" %} {% set slug_feedback_prefix = team.slug %} {% set slugify_source_id = "repo-name" %} {% set slugify_target_id = "repo-slug" %} {% set slug_readonly = false %} {% set private_visibility_help_text = "Limited to members of " ~ team.name ~ "." %}
{% include "partials/repo_form_identity.html" %} {% include "partials/repo_form_visibility.html" %}
{% with primary_label="Create repo", cancel_href_prefix="/profile/teams/", cancel_href_value=team.uuid, cancel_href_suffix="/repos" %} {% include "partials/form_actions.html" %} {% endwith %}
{% endblock %}