Skip to content

Commit

Permalink
Fixed links in the autorization list admin page
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Mar 13, 2023
1 parent 7d5b5ab commit 4742ea3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions canaille/templates/partial/oidc/admin/authorization_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@
{% for authorization in table_form.items_slice %}
<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>
<td><a href="{{ url_for('oidc.clients.edit', client_id=authorization.client.client_id) }}">{{ authorization.client.client_id }}</a></td>
<td>
<a href="{{ url_for("account.profile_edition", username=authorization.subject.uid[0]) }}">
{{ authorization.subject.uid[0] }}
</a>
</td>
<td>{{ authorization.issue_date }}</td>
</tr>
{% else %}
Expand Down

0 comments on commit 4742ea3

Please sign in to comment.