Calendar events support multiple reminder offsets with presets and per-user defaults. Lists index adds inline task entry and list property editing. Generic entity comments on list detail. New bangs.stats dashboard widget. Closes Gitea #28, #29, #30, #31. Migrations 0022 and 0023.
31 lines
858 B
Markdown
31 lines
858 B
Markdown
# 90 — Lists index: inline task add + list property edit
|
|
|
|
## Goal
|
|
|
|
From `/lists`, add tasks and edit list properties without opening the full list page.
|
|
|
|
## What we decided
|
|
|
|
- Inline add input at the bottom of each list card (Enter to submit, same as detail page).
|
|
- Inline edit for list name and type via a small edit control on the card header.
|
|
- Reuse existing `addItem`, `renameList`, and extended `updateList` server actions.
|
|
|
|
## Depends on
|
|
|
|
- 11 (lists module)
|
|
|
|
## Scope
|
|
|
|
- Extend `listUpdateInput` to allow `type` changes.
|
|
- Update `lists-index.tsx` with add-item row and list property editor.
|
|
|
|
## Acceptance criteria
|
|
|
|
- [x] Add an item to a list from the index
|
|
- [x] Edit list properties from the index
|
|
- [x] Changes persist and match detail-page behavior
|
|
|
|
## Notes
|
|
|
|
- Gitea: [ginnoir/famapp#29](https://gitea.ginnoir.com/ginnoir/famapp/issues/29)
|