Add more information to client_list route

This commit is contained in:
Pierre HUBERT 2022-04-15 22:02:16 +02:00
parent 489f938b71
commit ccd465a5e6

View File

@ -1,12 +1,13 @@
{% extends "base_settings_page.html" %} {% extends "base_settings_page.html" %}
{% block content %} {% block content %}
<table class="table table-hover" style="max-width: 600px;" aria-describedby="Clients list"> <table class="table table-hover" style="max-width: 800px;" aria-describedby="Clients list">
<thead> <thead>
<tr> <tr>
<th scope="col">ID</th> <th scope="col">ID</th>
<th scope="col">Name</th> <th scope="col">Name</th>
<th scope="col">Description</th> <th scope="col">Description</th>
<th scope="col">Redirect URI</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -15,6 +16,7 @@
<td>{{ c.id.0 }}</td> <td>{{ c.id.0 }}</td>
<td>{{ c.name }}</td> <td>{{ c.name }}</td>
<td>{{ c.description }}</td> <td>{{ c.description }}</td>
<td>{{ c.redirect_uri }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>