{% extends "orga/base.html" %} {% load i18n %} {% block extra_title %}pretalx Social Auth plugin Settings :: {% endblock extra_title %} {% block content %}

{% trans "pretalx Social Auth plugin Settings" %}

{% blocktranslate trimmed %} The Social Auth plugin configuration is managed globally via your pretalx.cfg file, not through the organizer interface. To configure identity providers and trust settings, edit the [plugin:pretalx_sso] section in your pretalx.cfg. {% endblocktranslate %}
{% if idps %}

{% trans "Configured Identity Providers" %}

{% for idp in idps %} {% endfor %}
{% trans "Provider Name" %} {% trans "Backend" %} {% trans "Implementation" %}
{{ idp.name }} {{ idp.backend_name }} {{ idp.module }}.{{ idp.class }}

{% trans "Email Trust Setting" %}

{% trans "The TRUST_IDP_EMAILS setting controls whether users can be automatically linked to existing accounts based on email addresses." %}

{% trans "To enable email trust, add this to your pretalx.cfg:" %}

[plugin:pretalx_sso]
TRUST_IDP_EMAILS=true
{% else %}

{% trans "No identity providers are currently configured. Add backends to the [authentication] section in your pretalx.cfg file." %}

{% endif %} {% endblock content %}