{%extends "base.html"%} {%block title%}gn-auth: View OAuth2 Client{%endblock%} {%block pagetitle%}View OAuth2 Client{%endblock%} {%block content%} {{flash_messages()}} {%if client.is_nothing()%}

No such client

{%else%} {%set client = client.value%}
View/Edit Oauth2 Client

Client ID: {{client.client_id}}

Client Name: {{client.client_metadata.client_name}}

Scope {%for scp in scope%}

{%endfor%}
Redirect URIs
Grants {%for granttype in granttypes%}
{%endfor%}
Other metadata
{%endif%} {%endblock%}