feat: Show the username of the created users from each token

This commit is contained in:
Dendy 2025-10-28 08:58:51 +01:00
parent 96628cb452
commit f24a2f9c2d
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@
<a href="{{ path('app_register', { id: token.id }) }}">
{{ token.id }}
</a>
{% if token.user is not null %}
|
{{ token.user.username }}
{% endif %}
{#<a
hx-delete="{{ path('app_fap_delete', { id: entry.id }) }}"
hx-target="#fap-statistics-container"