{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block title %}{{ _('Integration Setup') }} - {{ app_name }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': 'Admin', 'url': url_for('admin.admin_dashboard')}, {'text': 'Integrations'} ] %} {{ page_header( icon_class='fas fa-plug', title_text='Integration Setup', subtitle_text='Configure OAuth credentials for integrations', breadcrumbs=breadcrumbs ) }}

{{ _('Configure OAuth credentials for each integration. Global integrations are shared across all users.') }}

{% for provider_info in available_providers %} {% set provider = provider_info.provider %} {% set is_global = (provider != 'google_calendar') %}

{{ provider_info.display_name }}

{% if is_global %} {{ _('Global') }} {% else %} {{ _('Per User') }} {% endif %}

{{ provider_info.description }}

{% endfor %}
{% endblock %}