blob: 02f73d4a6bde10adc9fb8fae3e92bf2030933d43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{%extends "base.html"%}
{%block title%}Genenetwork3: OAuth2 Clients{%endblock%}
{%block content%}
{{flash_messages()}}
<h1>Genenetwork3: OAuth2 Clients</h1>
<table>
<caption>List of registered OAuth2 clients</caption>
<thead>
<tr>
<th>Client ID</th>
<th>Client Name</th>
<th>Default Redirect URI</th>
<th>Owner</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{%for client in clients%}
<tr>
<td>{{client.client_id}}</td>
<td>{{client.client_metadata.client_name}}</td>
<td>{{client.client_metadata.default_redirect_uri}}</td>
<td>{{client.user.name}} ({{client.user.email}})</td>
<td>
<a href="{{url_for('oauth2.admin.view_client', client_id=client.client_id)}}"
title"View/Edit client {{client.client_metadata.client_name}}">
View/Edit
</a>
</td>
</tr>
{%else%}
<tr>
<td colspan="4" style="text-align: center;">
No registered OAuth2 clients!
</td>
</tr>
{%endfor%}
</tbody>
</table>
{%endblock%}
|