﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18589	Typo in class-based generic views doc	cpthomas@…	nobody	"On this page: https://docs.djangoproject.com/en/dev/topics/class-based-views/generic-display/, under the Dynamic Filtering heading, there is a typo in the 3rd code example

PublisherBookListView should be PublisherBookList to match the previous code examples.

Existing: 
{{{
def get_context_data(self, **kwargs):
    # Call the base implementation first to get a context
    context = super(PublisherBookListView, self).get_context_data(**kwargs)
    # Add in the publisher
    context['publisher'] = self.publisher
    return context

}}}

Revised:

{{{
# ...

def get_context_data(self, **kwargs):
    # Call the base implementation first to get a context
    context = super(PublisherBookList, self).get_context_data(**kwargs)
    # Add in the publisher
    context['publisher'] = self.publisher
    return context
}}}

"	Cleanup/optimization	closed	Documentation	1.4	Normal	fixed	documentation, typo		Accepted	0	0	0	0	1	0
