X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/9fa4bfca20108d0815c310c605c8e88b6b9de738..c13691627da9527f921065be3ba9607910f0cde8:/doc/usage.rst diff --git a/doc/usage.rst b/doc/usage.rst index bf83de3..3e28c66 100644 --- a/doc/usage.rst +++ b/doc/usage.rst @@ -9,8 +9,8 @@ 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:: @@ -86,6 +86,15 @@ the ``paginate`` tag:: The default pagination template is contained in the ``pagination/pagination.html`` file inside the distribution. + +Multiple paginations per page +============================= + +You can use autopaginate/paginate multiple times in the same template. The only +requirement is to call autopaginate before calling paginate. That is, paginate +acts on the most recent call to autopaginate. + + A Note About Uploads ====================