Add notes field to WorkoutLog - #2462
Open
kmannarbor wants to merge 2 commits into
Open
Conversation
Adds an optional free-text notes field to the WorkoutLog model so users can record per-set observations (form cues, how it felt, etc.). The field is exposed via the existing REST API serializer. Closes wger-project#2437
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Aug 3, 2026
Author
|
Hi @rolandgeider — following up on this and the companion PRs (wger-project/react#1289, wger-project/flutter#1300) for the notes field from #2437. Looks like the CI/CodeQL workflow runs on all three PRs expired waiting for approval (first-time contributor gate) rather than actually running. Could someone approve the workflow runs so CI can execute? Happy to push a fresh commit to re-trigger if that's easier. Let me know if anything else is needed for review. |
Member
|
hey! I'll take a look at all these prs once we merge 2.7 |
Author
|
Thanks so much Roland!
…On Wed, Sep 2, 2026, 8:09 AM Roland Geider ***@***.***> wrote:
*rolandgeider* left a comment (wger-project/wger#2462)
<#2462 (comment)>
hey! I'll take a look at all these prs once we merge 2.7
—
Reply to this email directly, view it on GitHub
<#2462?email_source=notifications&email_token=AD7T72SPKH62UVQFLLMGD7L5NAEZNA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNJQHEZDSMBUGQYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-5509290440>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD7T72TYKTIC3XNEJJJ4GQD5NAEZNAVCNFSNUABDKJSXA33TNF2G64TZHM3TOMBVGU3DSO2JONZXKZJ3GUYDINJUHA3DONJQUF3AE>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/AD7T72V64YJJ2R6FGJXI2J35NAEZNA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNJQHEZDSMBUGQYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KUZTPN52GK4S7NFXXG>
and Android
<https://github.com/notifications/mobile/android/AD7T72QYVAWFFZ2J4IJD7LD5NAEZNA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKNJQHEZDSMBUGQYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2K4ZTPN52GK4S7MFXGI4TPNFSA>.
Download it today!
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an optional free-text notes field to the WorkoutLog model so users can record per-set observations (form cues, how it felt, etc.). The field is exposed via the existing REST API serializer.
Closes #2437
Proposed Changes
wger/manager/models/log.py— addnotes = TextField(blank=True, null=True)wger/manager/migrations/0028_add_notes_to_workout_log.py— migrationwger/manager/api/serializers.py— exposenotesinWorkoutLogSerializerwger/manager/tests/test_log_model.py— two new tests (saved/retrieved, optional)wger/manager/tests/test_log_session_api.py— two new tests (POST with notes, PATCH notes)A companion PR to wger-project/react adds the UI: a notes input on the log form, a Notes column in the history grid, and a "Last session" hint showing the previous note when logging the same exercise again.
Related Issue(s)
Please check that the PR fulfills these requirements
ruff format && isort .)changes etc.), write a small writeup in
CHANGELOG.md