{% extends "organizations/settings/base.html" %} {% load alter_field from ext_theme_tags %} {% load trans blocktrans from i18n %} {% load as_crispy_field from crispy_forms_tags %} {% block title %} {{ organization.name }} - {% trans "Authorization" %} {% endblock title %} {% block organization_sso_active %} active {% endblock organization_sso_active %} {% block organization_edit_content_header %} {% trans "Authorization" %} {% endblock organization_edit_content_header %} {% block organization_edit_sidebar_help_topics %} {% include "includes/elements/link.html" with url="https://docs.readthedocs.io/en/stable/commercial/single-sign-on.html" text=_("Organization single sign-on") is_external=True class="item" %} {% endblock organization_edit_sidebar_help_topics %} {% block organization_edit_content %}

{% blocktrans trimmed %} Change how users authenticate in your organization and reuse permissions from another service to control access to your projects and documentation. {% endblocktrans %}

{% if organization.ssointegration %}
{% trans "Invite users into your organization" %}

{% trans "You can invite people to join your organization by sending them this link:" %}

{% endif %}
{% csrf_token %}
{{ form.PROVIDER_DEFAULT }} {% trans "Default" %}
{% blocktrans trimmed %} Use built-in organization teams to manage access to your projects and documentation. {% endblocktrans %}
{{ form.PROVIDER_ALLAUTH }}
{% blocktrans trimmed %} Control all access to your projects by reusing permissions from your repository's version control provider. This replaces Read the Docs managed teams. {% endblocktrans %}
{{ form.PROVIDER_EMAIL }} Pro plan
{% blocktrans trimmed %} Users with a verified Google Workspace email account matching your domain will auto-join your organization. All users in your organization are required to have a connected Google account. Project permissions and authorization are managed using Read the Docs teams. {% endblocktrans %}
{% alter_field form.provider data_bind="valueInit: provider, value: provider" %} {{ form.provider | as_crispy_field }}
{% endblock organization_edit_content %}