1 How to use django-pagination
2 ----------------------------
4 ``django-pagination`` allows for easy Digg-style pagination without modifying
7 There are really 5 steps to setting it up with your projects (not including
8 installation, which is covered in INSTALL.txt in this same directory.)
10 1. List this application in the ``INSTALLED_APPS`` portion of your settings
11 file. Your settings file might look something like::
19 2. Install the pagination middleware. Your settings file might look something
22 MIDDLEWARE_CLASSES = (
24 'pagination.middleware.PaginationMiddleware',
28 3. Add this line at the top of your template to load the pagination tags:
30 {% load pagination_tags %}
33 4. Decide on a variable that you would like to paginate, and use the
34 autopaginate tag on that variable before iterating over it. This could
35 take one of two forms (using the canonical ``object_list`` as an example
38 {% autopaginate object_list %}
40 This assumes that you would like to have the default 20 results per page.
41 If you would like to specify your own amount of results per page, you can
44 {% autopaginate object_list 10 %}
46 Note that this replaces ``object_list`` with the list for the current page, so
47 you can iterate over the ``object_list`` like you normally would.
50 5. Now you want to display the current page and the available pages, so
51 somewhere after having used autopaginate, use the paginate inclusion tag:
55 This does not take any arguments, but does assume that you have already
56 called autopaginate, so make sure to do so first.
59 That's it! You have now paginated ``object_list`` and given users of the site
60 a way to navigate between the different pages--all without touching your views.