improved logout link, fixed permissions on task creation

This commit is contained in:
2025-09-23 10:54:36 +02:00
parent 771fa28fe4
commit f549269326
4 changed files with 24 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ onMount(fetchModules);
{#if module.name.trim()}<a href={module.url}>{module.name}</a>{/if}
{/each}
{#if user.name }
<a onclick={logout}>{t('logout')}</a>
<a onclick={logout}>{t('logout_user',{user:user.name})}</a>
{/if}
<TimeRecorder />
</nav>