canaille-globuzma/canaille/templates/oidc/admin/authorization_list.html

31 lines
1.1 KiB
HTML
Raw Normal View History

{% extends theme('base.html') %}
2020-08-26 14:27:08 +00:00
{% block script %}
<script src="/static/js/users.js"></script>
{% endblock %}
{% block content %}
2023-02-23 17:32:17 +00:00
<table class="ui table">
2021-12-20 22:57:27 +00:00
<thead>
<tr>
2023-02-23 17:32:17 +00:00
<th>{% trans %}Code{% endtrans %}</th>
2023-03-09 17:34:36 +00:00
<th>{% trans %}Client{% endtrans %}</th>
<th>{% trans %}Subject{% endtrans %}</th>
<th>{% trans %}Created{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for authorization in authorizations %}
<tr>
<td><a href="{{ url_for('oidc.authorizations.view', authorization_id=authorization.authorization_code_id) }}">{{ authorization.authorization_code_id }}</a></td>
<td><a href="{{ url_for('oidc.clients.edit', client_id=authorization.client_id) }}">{{ authorization.client_id }}</a></td>
<td>{{ authorization.subject }}</td>
2023-02-23 17:32:17 +00:00
<td>{{ authorization.issue_date }}</td>
2023-03-09 17:34:36 +00:00
</tr>
{% endfor %}
</tbody>
</table>
2020-08-26 14:27:08 +00:00
{% endblock %}