Ticket #2603: generic_views.txt.diff
File generic_views.txt.diff, 1.0 KB (added by , 17 years ago) |
---|
-
docs/generic_views.txt
775 775 page. 776 776 777 777 * **New in Django development version:** ``page_range``: A list of the 778 page numbers that are available. This is 1-based.778 page numbers that are available. This is 1-based. 779 779 780 780 Notes on pagination 781 781 ~~~~~~~~~~~~~~~~~~~ … … 797 797 variable. You can iterate over the list provided by ``page_range`` 798 798 to create a link to every page of results. 799 799 800 These values and lists are is1-based, not 0-based, so the first page would be800 These values and lists are 1-based, not 0-based, so the first page would be 801 801 represented as page ``1``. 802 802 803 For more information on how pagination works, consult the documentation 804 on `object pagination`_. 805 806 .. _`object pagination`: ../models/pagination/ 807 803 808 **New in Django development version:** 804 809 805 810 As a special case, you are also permitted to use