2022-04-06 15:18:06 +00:00
|
|
|
{% extends "base_settings_page.html" %}
|
|
|
|
{% block content %}
|
|
|
|
|
2022-04-15 20:02:16 +00:00
|
|
|
<table class="table table-hover" style="max-width: 800px;" aria-describedby="Clients list">
|
2022-04-06 15:18:06 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">ID</th>
|
|
|
|
<th scope="col">Name</th>
|
|
|
|
<th scope="col">Description</th>
|
2022-04-15 20:02:16 +00:00
|
|
|
<th scope="col">Redirect URI</th>
|
2023-04-15 10:19:15 +00:00
|
|
|
<th scope="col">Default</th>
|
|
|
|
<th scope="col">Granted to all users</th>
|
2022-04-06 15:18:06 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for c in clients %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ c.id.0 }}</td>
|
|
|
|
<td>{{ c.name }}</td>
|
|
|
|
<td>{{ c.description }}</td>
|
2022-04-15 20:02:16 +00:00
|
|
|
<td>{{ c.redirect_uri }}</td>
|
2023-04-15 10:19:15 +00:00
|
|
|
<td>{% if c.default %}YES{% else %}NO{% endif %}</td>
|
|
|
|
<td>{% if c.granted_to_all_users %}YES{% else %}NO{% endif %}</td>
|
2022-04-06 15:18:06 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock content %}
|