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
> email : [email protected] <javascript:>
> Twitter : @TonyFlury
>
> On 26 May 2018, at 18:47, Kranthi Kiran <[email protected] <javascript:>> 
> 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 
>> https://docs.djangoproject.com/en/2.0/intro/tutorial02/
>>
>> 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 [email protected] <javascript:>.
> To post to this group, send email to [email protected] 
> <javascript:>.
> 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
>  
> <https://groups.google.com/d/msgid/django-users/0e27456c-eefa-4a1e-bf4f-a44d9e8dcad1%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> 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 [email protected].
To post to this group, send email to [email protected].
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/838a6bf2-9630-4eb5-8b61-18ba37115823%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to