~netlandish/django-pagination

1ab5bdc4f1fd2b5e33ebd5a5bc47408d8f2db000 — floguy 16 years ago d6dc739
Hopefully made README.txt conform to ReST syntax.

git-svn-id: https://django-pagination.googlecode.com/svn/trunk@17 7f1efe38-554e-0410-b69d-834cb44da2d5
1 files changed, 8 insertions(+), 8 deletions(-)

M README.txt
M README.txt => README.txt +8 -8
@@ 10,19 10,19 @@ installation, which is covered in INSTALL.txt in this same directory.)
1. List this application in the ``INSTALLED_APPS`` portion of your settings
   file.  Your settings file might look something like:
   
       INSTALLED_APPS = (
           # ...
           'pagination',
       )
    INSTALLED_APPS = (
        # ...
        'pagination',
    )


2. Install the pagination middleware.  Your settings file might look something
   like:
   
       MIDDLEWARE_CLASSES = (
           # ...
           'pagination.middleware.PaginationMiddleware',
       )
    MIDDLEWARE_CLASSES = (
        # ...
        'pagination.middleware.PaginationMiddleware',
    )


3. Add this line at the top of your template to load the pagination tags: