{% extends "_layout.html" %} {% block title %}Overview{% endblock %} {% block content %}
Connected Apps
{{ stats.connected }}
{{ stats.available }} more available
Next Expiry
{{ last_activity }}
Across connected providers
Auth Types
{{ stats.oauth }} / {{ stats.api_key }}
OAuth 2.0 / API Key

Connected Providers

Manage Connections
{% if connected_providers %}
{% for p in connected_providers %}
{% if p.status == 'reauth' %} Re-auth required {% else %} Connected {% endif %}
{{ p.display_name }}
{{ p.description or p.api_url }}
{% if p.status == 'reauth' %} {% else %} {{ p.auth_type_label }}{% if p.scope_count %} ยท {{ p.scope_count }} scopes{% endif %} {% endif %}
{% endfor %}
{% else %}
No connections yet
Connect your first provider to get started.
Browse providers
{% endif %}
{% if show_admin_sections %}
Administrative controls

Provider configuration and audit events are restricted to administrators.

Review audit
{% endif %} {% endblock %}