añadido link a la pagina del usuario desde el panel de admin

This commit is contained in:
2025-11-30 00:29:47 -03:00
parent 4fe210eab6
commit f15421b2e7

View File

@@ -52,7 +52,11 @@
<TableBody> <TableBody>
{#each usuarios as usuario} {#each usuarios as usuario}
<TableRow> <TableRow>
<TableCell>@{usuario.username}</TableCell> <TableCell
>@<a href={'/' + usuario.username}>
{usuario.username}
</a>
</TableCell>
<TableCell>{usuario.displayName}</TableCell> <TableCell>{usuario.displayName}</TableCell>
<TableCell class="text-center">{usuario.postsCount}</TableCell> <TableCell class="text-center">{usuario.postsCount}</TableCell>
<TableCell>{usuario.createdAt.replace('Z', ' ').replace('T', ' | ')}</TableCell> <TableCell>{usuario.createdAt.replace('Z', ' ').replace('T', ' | ')}</TableCell>