Saturday, June 1, 2019

Re: Error while doing django tutorial part 2

on last line your code is:
        return self.question_text
it should be:
        return self.choice_text

On Monday, September 10, 2018 at 3:17:08 AM UTC+4:30, Pravinkumar Kale wrote:

I am also getting same issue...
Following is my code

##########################
from django.db import models
from django.utils import timezone

class Question(models.Model):
    question_text = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')
    def __str__(self):
        return self.question_text
    def was_published_recently(self):
        return self.pub_date>=timezone.now()
        


class Choice(models.Model):
    question = models.ForeignKey(Question, on_delete=models.CASCADE)
    choice_text = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)
    def __str__(self):
        return self.question_text
#################################


On Sunday, May 27, 2018 at 11:51:39 AM UTC+5:30, TonyF-UK wrote:
What is the code for your Choice model.  The error message clearly states that the Choice model is the one with the problem. 

-- 
Anthony Flury
Twitter : @TonyFlury

On 26 May 2018, at 18:47, Kranthi Kiran <1991.k...@gmail.com> wrote:

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_text
AttributeError: '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 at 

After modifying polls/models.py  and when running python3.6 manage.py shell again


I 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 screenshot




Please 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...@googlegroups.com.
To post to this group, send email to django...@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.

--
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/c5a9d0ea-4cd1-4f42-874d-690719c43d1c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment