{% extends "admin/base.html" %}
{% block title %}OAuth Clients - Admin - {{ site_name() }}{% endblock %}
{% block admin_content %}
Manage registered OAuth2 client applicationsOAuth Clients
| Display Name | Client ID | Redirect URIs | Status | Actions |
|---|---|---|---|---|
| {{ client.display_name }} | {{ client.client_id[:16] }}... |
{{ client.redirect_uri_list | length }} URI{{ "s" if client.redirect_uri_list | length != 1 }} | {% if client.is_active %} Active {% else %} Inactive {% endif %} | Edit |
No OAuth2 clients registered.
{% endif %} {% endblock %}