Ticket #5357: generic_views_r6243.diff
File generic_views_r6243.diff, 832 bytes (added by , 17 years ago) |
---|
-
docs/generic_views.txt
699 699 displayed per page. If this is given, the view will paginate objects with 700 700 ``paginate_by`` objects per page. The view will expect either a ``page`` 701 701 query string parameter (via ``GET``) or a ``page`` variable specified in 702 the URLconf. See "Notes on pagination"below.702 the URLconf. See `Notes on pagination`_ below. 703 703 704 * ``page``: The current page number, as an integer. This is 1-based. 705 See `Notes on pagination`_ below. 706 704 707 * ``template_name``: The full name of a template to use in rendering the 705 708 page. This lets you override the default template name (see below). 706 709