1 from setuptools import setup, find_packages
 
   6 How to use django-pagination
 
   7 ----------------------------
 
   9 ``django-pagination`` allows for easy Digg-style pagination without modifying
 
  12 There are really 5 steps to setting it up with your projects (not including 
 
  13 installation, which is covered in INSTALL.txt in this same directory.)
 
  15 1. List this application in the ``INSTALLED_APPS`` portion of your settings
 
  16    file.  Your settings file might look something like::
 
  24 2. Install the pagination middleware.  Your settings file might look something
 
  27        MIDDLEWARE_CLASSES = (
 
  29            'pagination.middleware.PaginationMiddleware',
 
  32 3. If it's not already added in your setup, add the request context processor.
 
  33    Note that context processors are set by default implicitly, so to set them
 
  34    explicitly, you need to copy and paste this code into your under
 
  35    the value TEMPLATE_CONTEXT_PROCESSORS::
 
  37         ("django.core.context_processors.auth",
 
  38         "django.core.context_processors.debug",
 
  39         "django.core.context_processors.i18n",
 
  40         "django.core.context_processors.media",
 
  41         "django.core.context_processors.request")
 
  43 4. Add this line at the top of your template to load the pagination tags:
 
  45        {% load pagination_tags %}
 
  48 5. Decide on a variable that you would like to paginate, and use the
 
  49    autopaginate tag on that variable before iterating over it.  This could 
 
  50    take one of two forms (using the canonical ``object_list`` as an example
 
  53        {% autopaginate object_list %}
 
  55    This assumes that you would like to have the default 20 results per page.
 
  56    If you would like to specify your own amount of results per page, you can
 
  59        {% autopaginate object_list 10 %}
 
  61    Note that this replaces ``object_list`` with the list for the current page, so
 
  62    you can iterate over the ``object_list`` like you normally would.
 
  65 6. Now you want to display the current page and the available pages, so
 
  66    somewhere after having used autopaginate, use the paginate inclusion tag:
 
  70    This does not take any arguments, but does assume that you have already
 
  71    called autopaginate, so make sure to do so first.
 
  74 That's it!  You have now paginated ``object_list`` and given users of the site
 
  75 a way to navigate between the different pages--all without touching your views.
 
  81 In django-pagination, there are no required settings.  There are, however, a
 
  82 small set of optional settings useful for changing the default behavior of the
 
  83 pagination tags.  Here's an overview:
 
  85 ``PAGINATION_DEFAULT_PAGINATION``
 
  86     The default amount of items to show on a page if no number is specified.
 
  88 ``PAGINATION_DEFAULT_WINDOW``
 
  89     The number of items to the left and to the right of the current page to
 
  90     display (accounting for ellipses).
 
  92 ``PAGINATION_DEFAULT_ORPHANS``
 
  93     The number of orphans allowed.  According to the Django documentation,
 
  94     orphans are defined as::
 
  96         The minimum number of items allowed on the last page, defaults to zero.
 
  98 ``PAGINATION_INVALID_PAGE_RAISES_404``
 
  99     Determines whether an invalid page raises an ``Http404`` or just sets the
 
 100     ``invalid_page`` context variable.  ``True`` does the former and ``False``
 
 105     name='django-pagination',
 
 107     description="django-pagination",
 
 108     long_description=LONG_DESCRIPTION,
 
 110         "Programming Language :: Python",
 
 111         "Topic :: Software Development :: Libraries :: Python Modules",
 
 112         "Framework :: Django",
 
 113         "Environment :: Web Environment",
 
 115     keywords='pagination,django',
 
 116     author='Eric Florenzano',
 
 117     author_email='floguy@gmail.com',
 
 118     url='http://django-pagination.googlecode.com/',
 
 120     packages=find_packages(),
 
 121     include_package_data=True,
 
 123     install_requires=['setuptools'],