Fixes calls to the LDAP 'Client.dn' attribute

This commit is contained in:
Éloi Rivard 2023-05-17 12:03:55 +02:00
parent d66619a01c
commit 7503ac772f

View file

@ -91,7 +91,7 @@
<ul class="ui list">
{% for client in token.audience %}
<li class="item">
<a href="{{ url_for("oidc.clients.edit", client_id=client.dn) }}">
<a href="{{ url_for("oidc.clients.edit", client_id=client.client_id) }}">
{{ client.client_name }}
</a>
</li>