mirror of
https://github.com/django/django.git
synced 2024-12-23 09:36:06 +00:00
Fixed #20150 -- Fixed an error in manager doc example
This commit is contained in:
parent
391ec5a085
commit
485c024567
@ -85,7 +85,7 @@ returns a list of all ``OpinionPoll`` objects, each with an extra
|
||||
objects = PollManager()
|
||||
|
||||
class Response(models.Model):
|
||||
poll = models.ForeignKey(Poll)
|
||||
poll = models.ForeignKey(OpinionPoll)
|
||||
person_name = models.CharField(max_length=50)
|
||||
response = models.TextField()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user