Fixed #14488 -- corrected a typo in the docs. Thanks to Frank Wiles for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
0fcb094557
commit
b514957850
|
@ -290,7 +290,7 @@ publication date, with the most recent first::
|
|||
queryset = Publisher.objects.all(),
|
||||
context_object_name = "publisher_list",
|
||||
)),
|
||||
(r'^publishers/$', ListView.as_view(
|
||||
(r'^books/$', ListView.as_view(
|
||||
queryset = Book.objects.order_by("-publication_date"),
|
||||
context_object_name = "book_list",
|
||||
)),
|
||||
|
|
Loading…
Reference in New Issue