Opened 16 years ago
Last modified 16 years ago
#11106 closed
typo in documentation? — at Initial Version
Reported by: | Maarten Nieber | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | typo | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I think in http://docs.djangoproject.com/en/dev/topics/db/models/#topics-db-models
Groups.objects.filter(membersnamestartswith='Paul')
should be
Group.objects.filter(membersnamestartswith='Paul')
Moreover, memberships for paul and ringo are created differently:
m1 = Membership(person=ringo, group=beatles, date_joined=date(1962, 8, 16), invite_reason= "Needed a new drummer.")
m2 = Membership.objects.create(person=paul, group=beatles, date_joined=date(1960, 8, 1), invite_reason= "Wanted to form a band.")
Only the second version (using Membership.objects.create) seems to work.
for group in Group.objects.all():
... print group.name
... print group.members.all()
The Beatles
[<Person: Paul McCartney>]