Text of error message in case the image is not loading-->>> q = Question.objects.get(pk=1)>>> q.choice_set.all()Traceback (most recent call last):File "<console>", line 1, in <module>File "/usr/lib64/python3.6/site-packages/django/db/models/query.py", line 251, in __repr__return '<%s %r>' % (self.__class__.__name__, data)File "/usr/lib64/python3.6/site-packages/django/db/models/base.py", line 513, in __repr__return '<%s: %s>' % (self.__class__.__name__, self)File "/home/kkondapalli/mysite/polls/models.py", line 25, in __str__return self.question_textAttributeError: 'Choice' object has no attribute 'question_text'>>>
On Saturday, 26 May 2018 22:49:04 UTC+5:30, Kranthi Kiran wrote:Hello User,I am following django tutorial atAfter modifying polls/models.py and when running python3.6 manage.py shell againI am getting the following error at the following>>> q = Question.objects.get(pk=1) # Display any choices from the related object set -- none so far. >>> q.choice_set.all() <QuerySet []>Error screenshotPlease help me to resolve the issue at earliest
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/0e27456c-eefa-4a1e-bf4f-a44d9e8dcad1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Saturday, May 26, 2018
Re: Error while doing django tutorial part 2
What is the code for your Choice model. The error message clearly states that the Choice model is the one with the problem.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment