From d6e737f207d0d5df3c7aa2726cde889536dbb566 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 12 Sep 2023 16:47:11 -0700 Subject: feat: activity history risk --- src/routes/activity-history/+page.svelte | 92 ++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/routes/activity-history/+page.svelte (limited to 'src/routes') diff --git a/src/routes/activity-history/+page.svelte b/src/routes/activity-history/+page.svelte new file mode 100644 index 00000000..a1938ee9 --- /dev/null +++ b/src/routes/activity-history/+page.svelte @@ -0,0 +1,92 @@ + + +

Activity History Hole Risk

+ +Days in risk of developing an activity history hole. (days with one activity) + +

+ +{#if data.user === undefined} + Please log in to view this page. +{:else} + {#await activityHistoryData} + Loading ... + {:then activities} + {#if activities === undefined} + Loading ... + {:else} +

+ {/if} + {/await} +{/if} -- cgit v1.2.3