diff --git a/src/routes/core/+layout.svelte b/src/routes/core/+layout.svelte
index 353db8da..ce689423 100644
--- a/src/routes/core/+layout.svelte
+++ b/src/routes/core/+layout.svelte
@@ -1,102 +1,43 @@
Core - {$ae_loc.title ?? 'Æ loading...'}
-
@@ -35,9 +29,9 @@
Accounts
Manage client accounts and high-level system settings.
-
+
@@ -47,9 +41,9 @@
Sites
Configure sites and domains associated with the active account.
-
+
@@ -59,51 +53,21 @@
Users
Manage system access, permissions, and user credentials.
-
+
-
-
-
-
-
People
-
-
+
+
+
+
People
-
-
Search and manage person records.
-
-
{
- person_id_random_li = results.map(p => p.person_id_random);
- $ae_sess.person.show_report__person_li = true;
- }} />
+ Search and manage person records and their user linking.
+
+ Manage People
+
@@ -113,26 +77,9 @@
Lookups
View system lookup tables (countries, time zones, etc).
-
+
-
-
- {#if $ae_sess.person.show_report__person_li}
-
-
-
Search Results ({person_id_random_li.length})
-
-
-
-
-
-
-
- {/if}
\ No newline at end of file
diff --git a/src/routes/core/+page.ts b/src/routes/core/+page.ts
index e69de29b..a1cdf8fd 100644
--- a/src/routes/core/+page.ts
+++ b/src/routes/core/+page.ts
@@ -0,0 +1,8 @@
+import type { PageLoad } from './$types';
+
+export const load: PageLoad = async ({ parent }) => {
+ const parentData = await parent();
+ return {
+ account_id: parentData.account_id
+ };
+};
diff --git a/src/routes/core/accounts/+page.svelte b/src/routes/core/accounts/+page.svelte
index 55891b85..d919a2c2 100644
--- a/src/routes/core/accounts/+page.svelte
+++ b/src/routes/core/accounts/+page.svelte
@@ -117,9 +117,9 @@
{/if}