diff options
author | Frederick Muriuki Muriithi | 2023-07-03 11:20:34 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-07-03 11:20:34 +0300 |
commit | 14f073af864e7d9d94babe2bf094f3079331bb34 (patch) | |
tree | 72876281aa41bd391187e262e3044cdb1ea98934 /gn3/templates/admin/list-oauth2-clients.html | |
parent | 424a515120478998592663725d2d1186d36304f4 (diff) | |
download | genenetwork3-14f073af864e7d9d94babe2bf094f3079331bb34.tar.gz |
Spruce up UI
Make UI somewhat consistent with the GN2 UI.
Diffstat (limited to 'gn3/templates/admin/list-oauth2-clients.html')
-rw-r--r-- | gn3/templates/admin/list-oauth2-clients.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gn3/templates/admin/list-oauth2-clients.html b/gn3/templates/admin/list-oauth2-clients.html index 030c2e9..0104f0d 100644 --- a/gn3/templates/admin/list-oauth2-clients.html +++ b/gn3/templates/admin/list-oauth2-clients.html @@ -2,12 +2,12 @@ {%block title%}Genenetwork3: OAuth2 Clients{%endblock%} +{%block pagetitle%}OAuth2 Clients{%endblock%} + {%block content%} {{flash_messages()}} -<h1>Genenetwork3: OAuth2 Clients</h1> - -<table> +<table class="table table-hover table-striped cell-border no-footer"> <caption>List of registered OAuth2 clients</caption> <thead> <tr> @@ -15,7 +15,7 @@ <th>Client Name</th> <th>Default Redirect URI</th> <th>Owner</th> - <th>Actions</th> + <th colspan="2">Actions</th> </tr> </thead> @@ -28,7 +28,8 @@ <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}}"> + title"View/Edit client {{client.client_metadata.client_name}}" + class="btn btn-info"> View/Edit </a> </td> @@ -38,7 +39,8 @@ method="POST"> <input type="hidden" name="client_id" value="{{client.client_id}}" /> <input type="submit" value="Delete" - title"Delete client {{client.client_metadata.client_name}}" /> + title"Delete client {{client.client_metadata.client_name}}" + class="btn btn-danger" /> </form> </td> </tr> |