Die grundlegenden HTML-Dateien sind vorhanden.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<script>
|
||||
export let params;
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>{params.title}</title>
|
||||
</svelte:head>
|
||||
|
||||
<h1>{params.title}</h1>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Zeitraum</th>
|
||||
<th>Arbeitstage</th>
|
||||
<th>Arbeitsstunden</th>
|
||||
<th>Über- / Unterstunden</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each params.records as record}
|
||||
<tr>
|
||||
<td>{record.Zeitraum}</td>
|
||||
<td>{record.Arbeitstage}</td>
|
||||
<td>{record.Arbeitsstunden}</td>
|
||||
<td>{record.Unterstunden}</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user