Re: While going through django tutorial i found some errors when i tried to execute the python manage.py runserver.The error is attached below:

2018-05-06 Thread 'Anthony Flury' via Django users
It is ForeignKey (capital K). In your files you sent you missed the one file it was actually complaining about : On 06/05/18 18:09, Avitab Ayan Sarmah wrote: index.html: {% if latest_question_list %}     {% for question in latest_question_list %}     {{ question.question_text }}   {%

While going through django tutorial i found some errors when i tried to execute the python manage.py runserver.The error is attached below:

2018-05-06 Thread Avitab Ayan Sarmah
index.html: {% if latest_question_list %} {% for question in latest_question_list %} {{ question.question_text }} {% endfor %} {% else %} No polls are available. {% endif %} admin.py: from django.contrib import admin from . models import Question admin.site.register(Question)