preparing for new accounting module

This commit is contained in:
2026-04-01 18:28:02 +02:00
parent 9f5e1e0853
commit bde0901302
9 changed files with 43 additions and 19 deletions

View File

@@ -5,6 +5,7 @@
import { loadTranslation } from './translations.svelte';
import { checkUser, user } from './user.svelte';
import Accounts from "./routes/accounting/index.svelte";
import AddDoc from "./routes/document/Add.svelte";
import AddTask from "./routes/task/Add.svelte";
import Bookmark from "./routes/bookmark/View.svelte";
@@ -88,6 +89,7 @@
<span class="warn">{@html messages.warning}</span>
{/if}
<Route path="/" component={User} />
<Route path="/accounting" component={Accounts} />
<Route path="/bookmark" component={Bookmarks} />
<Route path="/bookmark/:id/view" component={Bookmark} />
<Route path="/calc" component={Spreadsheet} />

View File

@@ -0,0 +1 @@
<h1>Accounts</h1>