Kaydet (Commit) b5149578 authored tarafından Alex Gaynor's avatar Alex Gaynor

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
üst 0fcb0945
......@@ -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",
)),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment