pennersr / django-pagemore

KISS approach to a "Load more" style AJAX paginator
BSD 3-Clause "New" or "Revised" License
54 stars 17 forks source link

=============== django-pagemore

KISS approach to a "Load more" style AJAX paginator

Requirements

Features

Quickstart

Pagination Strategies

When a user is paginating through a list of items, while at the same time new items are being inserted, offset based slicing would result in duplicate items being shown. A way to circumvent this is to make sure that the items are properly ordered and to filter on items after a certain point. Both strategies are supported.

Paginate by Slicing

Usage::

{% more_paginator ... strategy="slice" ... %}

Characteristics:

Paginate by Filtering

Usage::

{% more_paginator ... strategy="filter" ... %}

Characteristics: