web/admin: link impersonation user for events

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-01-10 16:20:43 +01:00
parent 4d66e42708
commit f2961cb536
No known key found for this signature in database
1 changed files with 6 additions and 2 deletions

View File

@ -64,10 +64,14 @@ export class EventListPage extends TablePage<Event> {
html`<div>${ActionToLabel(item.action)}</div>
<small>${item.app}</small>`,
item.user?.username
? html`<a href="#/identity/users/${item.user.pk}"> ${item.user?.username} </a>
? html`<div>
<a href="#/identity/users/${item.user.pk}">${item.user?.username}</a>
</div>
${item.user.on_behalf_of
? html`<small>
${t`On behalf of ${item.user.on_behalf_of.username}`}
<a href="#/identity/users/${item.user.on_behalf_of.pk}"
>${t`On behalf of ${item.user.on_behalf_of.username}`}</a
>
</small>`
: html``}`
: html`-`,