Thursday, July 19, 2012

Re: Difficulties using generic views (Tutorial 4, Django 1.4)

    url(r'^$',
        ListView.as_view(
            queryset=Poll.objects.order_by('-pub_date')[:5],
            context_object_name='latest_poll_list',
            template_name='polls/index.html')),


Here you are setting template_name='polls/index.html'
 

TemplateDoesNotExist at /polls/

index.html, polls/poll_list.html


But this error corresponds to having set template_name='index.html' in this same view.

Review you really have set  template_name='polls/index.html' in that view and that this file is in place:
/home/my_user/Webdev/Templates/polls/index.html

 Cheers

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/pYw-zVC3qI4J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment