I just imported generic views successfully and here comes the problem when I want to use them in views the server just gives an error directed to "." (period) in generic.ListView...
Here is the code I am currently working on.
def IndexView(generic.ListView):
template_name = 'polls/index.html'
context_object_name = 'question_list'
def get_queryset(self):
return Question.objects.order_by('-published_date')[:5]