From 4c441b1e46753b823eb982f78df9e36031a3660c Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Tue, 9 Sep 2025 20:01:21 +0200 Subject: [PATCH] working on wiki index page and page display Signed-off-by: Stephan Richter --- frontend/src/App.svelte | 2 ++ frontend/src/routes/wiki/Index.svelte | 17 +++++++++++----- frontend/src/routes/wiki/View.svelte | 28 +++++++++++++++++++++++++++ 3 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 frontend/src/routes/wiki/View.svelte diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 550b608..9596275 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -33,6 +33,7 @@ import ViewPrj from "./routes/project/View.svelte"; import ViewTask from "./routes/task/View.svelte"; import WikiIndex from "./routes/wiki/Index.svelte"; + import WikiPage from "./routes/wiki/View.svelte" let translations_ready = $state(false); @@ -89,6 +90,7 @@ + Not found! diff --git a/frontend/src/routes/wiki/Index.svelte b/frontend/src/routes/wiki/Index.svelte index b56896d..96379ea 100644 --- a/frontend/src/routes/wiki/Index.svelte +++ b/frontend/src/routes/wiki/Index.svelte @@ -1,11 +1,20 @@ +

{id}

+{#if error} +{error} +{/if} \ No newline at end of file