Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/lib/nta/NTACard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
<span class="text-blue-900">
{nta.nta.compensation}
</span>
<span class="text-red-500">
gültig bis {nta.nta.until}
</span>
</div>
<div>
<span class="text-black-900">
Expand Down
7 changes: 4 additions & 3 deletions src/routes/nta/add/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
/>

<span>Kompensation</span>
<!-- svelte-ignore element_invalid_self_closing_tag -->
<textarea
class="textarea textarea-bordered w-full"
placeholder="Kompensation"
Expand All @@ -141,7 +142,7 @@
step="5"
bind:value={ntaInput.deltaDurationPercent}
/>

<br />
<label class="label cursor-pointer">
<span>
{#if !ntaInput.needsRoomAlone}
Expand All @@ -151,7 +152,7 @@
>
<input type="checkbox" class="checkbox" bind:checked={ntaInput.needsRoomAlone} />
</label>

<br />
<label class="label cursor-pointer">
<span>
{#if !ntaInput.needsHardware}
Expand All @@ -161,7 +162,7 @@
>
<input type="checkbox" class="checkbox" bind:checked={ntaInput.needsHardware} />
</label>

<br />
<span>Studiengang</span>
<input
type="text"
Expand Down