X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/4b451daf1c9a4496cd7c844afae283bbdd41ac7d..946035aa30833df81bf6cb2ca307278c4a3f1962:/doc/usage.rst?ds=inline diff --git a/doc/usage.rst b/doc/usage.rst index d875137..804337f 100644 --- a/doc/usage.rst +++ b/doc/usage.rst @@ -9,15 +9,15 @@ How to use linaro-django-pagination ``linaro-django-pagination`` allows for easy Digg-style pagination without modifying your views. -There are really 5 steps to setting it up with your projects (not including -installation, which is covered in INSTALL.txt in this same directory.) +There are really 5 steps to setting it up with your projects (not including +installation, which is covered in :ref:`installation`.) 1. List this application in the ``INSTALLED_APPS`` portion of your settings file. Your settings file might look something like:: INSTALLED_APPS = ( # ... - 'pagination', + 'linaro_django_pagination', ) @@ -26,7 +26,7 @@ installation, which is covered in INSTALL.txt in this same directory.) MIDDLEWARE_CLASSES = ( # ... - 'pagination.middleware.PaginationMiddleware', + 'linaro_django_pagination.middleware.PaginationMiddleware', ) 3. If it's not already added in your setup, add the request context processor.