BasicOIDC/templates/settings/clients_list.html

26 lines
602 B
HTML

{% extends "base_settings_page.html" %}
{% block content %}
<table class="table table-hover" style="max-width: 800px;" aria-describedby="Clients list">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Name</th>
<th scope="col">Description</th>
<th scope="col">Redirect URI</th>
</tr>
</thead>
<tbody>
{% for c in clients %}
<tr>
<td>{{ c.id.0 }}</td>
<td>{{ c.name }}</td>
<td>{{ c.description }}</td>
<td>{{ c.redirect_uri }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}