working on project creation

This commit is contained in:
2025-07-18 15:35:37 +02:00
parent f5f08f244f
commit 9626d91ccb
12 changed files with 207 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
<script>
import {t} from '../../translations.svelte.js';
let { settings = $bindable() } = $props();
</script>
<fieldset>
<legend>{t('settings')}</legend>
<label>
<input type="checkbox" bind:checked={settings.show_closed} />
{t('display_closed_tasks')}
</label>
</fieldset>