diff --git a/ui/src/routes/WorkingHours.svelte b/ui/src/routes/WorkingHours.svelte index 5510005..198507f 100644 --- a/ui/src/routes/WorkingHours.svelte +++ b/ui/src/routes/WorkingHours.svelte @@ -1,140 +1,32 @@ - {title} + {TITLE} {#if activeRecord === null}
-

{title}

+

{TITLE}

- {#if params.isLoading === true} -

Loading...

- {:else} - -
-
- -
-
- - - - - - - - - - - - - - - {#each params.records as record} - - - - - - {/each} - -
DatumArbeitsstundenAktionen
{record.workingDay}{record.workingTime} - -
- {/if} +
{:else}
-

{title}

+

{TITLE}

- -
-
-
- - -
-
- - -
-
-
- - -
-
+
{/if} diff --git a/ui/src/routes/WorkingHours/Formular.svelte b/ui/src/routes/WorkingHours/Formular.svelte new file mode 100644 index 0000000..370bf0a --- /dev/null +++ b/ui/src/routes/WorkingHours/Formular.svelte @@ -0,0 +1,49 @@ + + +
+
+
+ + +
+
+ + +
+
+
+ + +
+
\ No newline at end of file diff --git a/ui/src/routes/WorkingHours/List.svelte b/ui/src/routes/WorkingHours/List.svelte new file mode 100644 index 0000000..0e53e85 --- /dev/null +++ b/ui/src/routes/WorkingHours/List.svelte @@ -0,0 +1,78 @@ + + + +
+
+ +
+
+{#if isLoading === true} +

Loading...

+{:else} + + + + + + + + + + + + + + + {#each records as record} + + + + + + {/each} + +
DatumArbeitsstundenAktionen
{record.workingDay}{record.workingTime} + +
+{/if} \ No newline at end of file