From 7b4d516ccc6b48a9bec47034501e9ebf8145ce8d Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 10 Oct 2022 00:38:23 +0800 Subject: feat: !WIP implement projects table --- .../src/routes/(main)/(app)/projects/+page.svelte | 86 +++++++++++++++++++++- 1 file changed, 84 insertions(+), 2 deletions(-) (limited to 'code') diff --git a/code/app/src/routes/(main)/(app)/projects/+page.svelte b/code/app/src/routes/(main)/(app)/projects/+page.svelte index 683938a..ad273ab 100644 --- a/code/app/src/routes/(main)/(app)/projects/+page.svelte +++ b/code/app/src/routes/(main)/(app)/projects/+page.svelte @@ -1,5 +1,87 @@ -

Projects

+
+
+
+

Projects

+

A list of all the projects in your organsation.

+
+
+
+
+
+ + + {#each $headerRows as headerRow (headerRow.id)} + + + {#each headerRow.cells as cell (cell.id)} + + + + {/each} + + + {/each} + + + {#each $rows as row (row.id)} + + + {#each row.cells as cell (cell.id)} + {@const materialisedCell = cell.render()} + + + + {/each} + + + {/each} + +
+ +
+ +
+
+
-- cgit v1.3