implemented selection of timetrack entries and display of sum of durations of selected records

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-28 12:04:26 +02:00
parent 9fe94da5a6
commit 829c1796b5
4 changed files with 34 additions and 26 deletions

View File

@@ -14,6 +14,10 @@
<form {onsubmit}>
<fieldset>
<legend>{t('edit_object',{object:t('record')})}</legend>
<label>
{t('subject')}
<input type="text" bind:value={record.subject} />
</label>
<label>
{t('start')}
<input type="datetime-local" bind:value={record.start_time} />
@@ -22,10 +26,6 @@
{t('end')}
<input type="datetime-local" bind:value={record.end_time} />
</label>
<label>
{t('subject')}
<input type="text" bind:value={record.subject} />
</label>
<label>
{t('description')}
<MarkdownEditor simple={true} bind:value={record.description} />