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.
858 B
858 B
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 extendedupdateListserver actions.
Depends on
- 11 (lists module)
Scope
- Extend
listUpdateInputto allowtypechanges. - Update
lists-index.tsxwith add-item row and list property editor.
Acceptance criteria
- Add an item to a list from the index
- Edit list properties from the index
- Changes persist and match detail-page behavior
Notes
- Gitea: ginnoir/famapp#29