Re: Tutorial part 3 help: bulleted-list

2018-07-17 Thread premalatha balan
Hi all, I was doing ok until https://docs.djangoproject.com/en/1.11/intro/tutorial03/#namespacing-url-names part. Not sure what happened. The error is NoReverseMatch at /poll "Reverse for 'detail' not found. 'detail' is not a valid view function or pattern name." "Error during template ren

Re: Tutorial part 3 help: bulleted-list

2018-07-16 Thread premalatha balan
Thank you so much. I have corrected the return including the context dict now. Thank you. It has solved it. Thank you again. On Monday, 16 July 2018 13:13:08 UTC+1, Jason wrote: > > two problems: you're just returning a string in your response, not the > template. > Nor are you using the contex

Re: Tutorial part 3 help: bulleted-list

2018-07-16 Thread Jason
two problems: you're just returning a string in your response, not the template. Nor are you using the context dict anywhere. Look at the example in the tutorial: https://docs.djangoproject.com/en/2.0/intro/tutorial03/#a-shortcut-render How does your index method differ from what's there? --

Re: Tutorial part 3 help: bulleted-list

2018-07-16 Thread premalatha balan
Hi, I am having the same problem that it does not display bulleted list, but I do not have a typo. Below is what I have got. *mysite>>polls>>view.py* from django.http import HttpResponse from django.template import loader from .models import Question def index(request): latest_question_list

Re: Tutorial part 3 help: bulleted-list

2016-10-18 Thread Johnny McClung
Thanks so much everyone. I looked over those files many times and I couldn't see it. On Tuesday, October 18, 2016 at 5:17:55 PM UTC-4, James Schneider wrote: > > > > On Tue, Oct 18, 2016 at 11:00 AM, Johnny McClung > wrote: > >> I have gotten down to the part where the tutorial reads "Load th

Re: Tutorial part 3 help: bulleted-list

2016-10-18 Thread James Schneider
On Tue, Oct 18, 2016 at 11:00 AM, Johnny McClung wrote: > I have gotten down to the part where the tutorial reads "Load the page by > pointing your browser at “/polls/”, and you should see a bulleted-list > containing the “What’s up” question from Tutorial 2. The link points to the > question’s d

Re: Tutorial part 3 help: bulleted-list

2016-10-18 Thread Vineet Kothari
NYC On Oct 19, 2016 12:57 AM, "Vijay Khemlani" wrote: > You wrote "latest_quesion_list" in the context dictionary key, it should > be "latest_question_list" > > On Tue, Oct 18, 2016 at 3:00 PM, Johnny McClung > wrote: > >> I have gotten down to the part where the tutorial reads "Load the page b

Re: Tutorial part 3 help: bulleted-list

2016-10-18 Thread Vijay Khemlani
You wrote "latest_quesion_list" in the context dictionary key, it should be "latest_question_list" On Tue, Oct 18, 2016 at 3:00 PM, Johnny McClung wrote: > I have gotten down to the part where the tutorial reads "Load the page by > pointing your browser at “/polls/”, and you should see a bullete

Tutorial part 3 help: bulleted-list

2016-10-18 Thread Johnny McClung
I have gotten down to the part where the tutorial reads "Load the page by pointing your browser at “/polls/”, and you should see a bulleted-list containing the “What’s up” question from Tutorial 2. The link points to the question’s detail page." I do not see a bulleted-list. All I see is "No po