Skip to main content

Easy add pagination in Django, using Bootstrap's layout.

Reason this release was yanked:

This version is unsafe please upgrade to 2.4.5.

Project description

Travis Python Version PyPi Black

Django-pagination-bootstrap is an app to easy add pagination in Django, using Bootstrap’s layout.

Note: This library currently works with Python 3.6+, Django 2.0+ and Bootstrap 3+. For older versions, please use version 1.3.0.

Installation

To install django-pagination-bootstrap simply run:

pip install django-pagination-bootstrap

Configuration

We need to hook django-pagination-bootstrap into our project.

  1. Put django-pagination-bootstrap into your INSTALLED_APPS at settings module:

INSTALLED_APPS = (
    # other apps
    "django-pagination_bootstrap",
)
  1. Install the pagination middleware. Your settings file might look something like:

MIDDLEWARE_CLASSES = (
    # other middleware
    "django_pagination_bootstrap.middleware.PaginationMiddleware",
)
  1. If it’s not already added in your setup, add the request context processor. Note that context processors are set by default implicitly, so to set them explicitly, you need to copy and paste this code into your under the value TEMPLATE_CONTEXT_PROCESSORS.

TEMPLATES = [
    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [],
        "APP_DIRS": True,
        "OPTIONS": {
            "context_processors": [
                "django.template.context_processors.debug",
                "django.template.context_processors.request",
                "django.contrib.auth.context_processors.auth",
                "django.template.context_processors.i18n",
                "django.template.context_processors.media",
            ],
        },
    },
]
  1. Add this line at the top of your template to load the pagination tags:

{% load pagination_tags %}
  1. Decide on a variable that you would like to paginate, and use the autopaginate tag on that variable before iterating over it. This could take one of two forms (using the canonical object_list as an example variable):

{% autopaginate object_list %}

This assumes that you would like to have the default 20 results per page. If you would like to specify your own amount of results per page, you can specify that like so:

{% autopaginate object_list 10 %}

Note that this replaces object_list with the list for the current page, so you can iterate over the object_list like you normally would.

  1. Now you want to display the current page and the available pages, so somewhere after having used autopaginate. If you are using Bootstrap 3, use the paginate inclusion tag:

{% paginate %}

This does not take any arguments, but does assume that you have already called autopaginate, so make sure to do so first.

That’s it! You have now paginated object_list and given users of the site a way to navigate between the different pages–all without touching your views.

Side effects

A django-paginator instance will be injected in the template context as paginator. You can access it as usual:

.. code-block:: python

page {{ page }} of {{ paginator.num_pages }}

Optional Settings

In django-pagination, there are no required settings. There are, however, a small set of optional settings useful for changing the default behavior of the pagination tags. Here’s an overview:

  • PAGINATION_DEFAULT_PAGINATION

The default amount of items to show on a page if no number is specified.

  • PAGINATION_DEFAULT_WINDOW

The number of items to the left and to the right of the current page to display (accounting for ellipses).

  • PAGINATION_DEFAULT_ORPHANS

The number of orphans allowed. According to the Django documentation, orphans are defined as:

The minimum number of items allowed on the last page, defaults to zero.

  • PAGINATION_INVALID_PAGE_RAISES_404

Determines whether an invalid page raises an Http404 or just sets the invalid_page context variable. True does the former and False does the latter.

Credits

This is based on Eric Florenzano’s django-pagination 1.0.7 and is an updated version of https://github.com/tgdn/django-bootstrap-pagination for Django 1.7 or higher.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-pagination-bootstrap-2.1.0.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-pagination-bootstrap-2.1.0.tar.gz.

File metadata

  • Download URL: django-pagination-bootstrap-2.1.0.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django-pagination-bootstrap-2.1.0.tar.gz
Algorithm Hash digest
SHA256 feeddabd6916db460ccbf541739462cf0cad990bd7f1b31a1baa9e9f46fa5783
MD5 cc4cb4b6c3d077ce43d9d3a528cc6d82
BLAKE2b-256 30ab5840d7fd601c4076921b8487949b04d0959b3f6a04c4a5a98d1a15ee7b9e

See more details on using hashes here.

Provenance

File details

Details for the file django_pagination_bootstrap-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: django_pagination_bootstrap-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django_pagination_bootstrap-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 566de67c5539eb8165be1badc7a4e4008c26b3a49f93b780c1751eae09cb9743
MD5 01edf783c0e231850caf9ee6d2737330
BLAKE2b-256 eba28dccfe0f03d4fe97f63f2950e980edac1fff8c3d48c1d14d87a1b32752e1

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page