ADMIN_CLIENTS_TEMPLATE = """ Client Administration

OIDC Clients

Manage OIDC clients - Logged in as: {{ admin_user.username }}

{% if message %}
{{ message }}
{% endif %}
{% for client in clients %} {% endfor %}
ID Client ID Client Name Redirect URIs Allowed Scopes Actions
{{ client.id }} {{ client.client_id }} {{ client.client_name }}
    {% for uri in client.get_redirect_uris() %}
  • {{ uri }}
  • {% endfor %}
{{ client.get_allowed_scopes()|join(', ') }}
" ADMIN_CREATE_CLIENT_TEMPLATE = """ Create New Client

➕ Create New OIDC Client

Add a new client application to the system

" ADMIN_EDIT_CLIENT_TEMPLATE = """ Edit Client - {{ client.client_name }}

✏️ Edit OIDC Client

Modify details for client: {{ client.client_name }}

"