Fixed #12, updated middleware to access request variable with request.REQUEST dict...
[django-pagination.git] / README.txt
1 How to use django-pagination
2 ----------------------------
3
4 ``django-pagination`` allows for easy Digg-style pagination without modifying
5 your views.
6
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.)
9
10 1. List this application in the ``INSTALLED_APPS`` portion of your settings
11    file.  Your settings file might look something like::
12    
13        INSTALLED_APPS = (
14            # ...
15            'pagination',
16        )
17
18
19 2. Install the pagination middleware.  Your settings file might look something
20    like::
21    
22        MIDDLEWARE_CLASSES = (
23            # ...
24            'pagination.middleware.PaginationMiddleware',
25        )
26
27
28 3. Add this line at the top of your template to load the pagination tags:
29
30        {% load pagination_tags %}
31
32
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
36    variable):
37    
38        {% autopaginate object_list %}
39        
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
42    specify that like so:
43    
44        {% autopaginate object_list 10 %}
45    
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.
48    
49
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:
52    
53        {% paginate %}
54    
55    This does not take any arguments, but does assume that you have already
56    called autopaginate, so make sure to do so first.
57
58
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.