Restructure Core management into linkable routes and add common layout navigation

- Renamed person route to people for consistency
- Refactored /core dashboard to use standard <a> links
- Added common management <nav> to core layout
- Replaced goto() with standard links across all list and detail pages
- Fixed 500 error caused by broken import path and strict layout data
This commit is contained in:
Scott Idem
2026-01-06 15:33:08 -05:00
parent 5d2186e8ca
commit a0f04726e0
14 changed files with 135 additions and 167 deletions

View File

@@ -103,9 +103,9 @@
<span>{user.email || '--'}</span>
</div>
</div>
<button class="btn btn-sm variant-filled-primary w-full" onclick={() => goto(`/core/users/${user.user_id_random}`)}>
<a class="btn btn-sm variant-filled-primary w-full" href="/core/users/{user.user_id_random}">
Edit User
</button>
</a>
</div>
{/each}
</div>