Simple pagination for django
Project description
This package is used to create standard or cursor navigation for django.
It has builtin templates, so you can use this library with minimal effort. Library can be used with jinja2 templates. If you are using django_jinja package, additional template tags are automatically registered to jinja2 engine.
If you are using cursor pagination, the queryset must be ordered with combination of data fields, which are unique across query.
Cursor pagination supports checking for next / previous page presence without any additional queries. There is used only single query to select records, no additional queries to count checking or next / previous checking.
Install
pip install django-universal-paginator
To INSTALLED_APPS add django_universal_paginator.
INSTALLED_APPS = (
# ...
'django_universal_paginator',
)
Settings
Classical paginator support following settings:
- PAGINATOR_ON_EACH_SIDE
Count of links around current page, default: 3
- PAGINATOR_ON_ENDS
Link count on start / end of list, default: 1
- PAGINATOR_TEMPLATE_NAME
Default template name for paginator, default: 'paginator/paginator.html'
Usage
Template
To use this library first add {% pagination %} to django template or {{ pagination() }} to jinja2 template.
<!-- object_list.html -->
{% load paginator_tags %}
<ul>
{% for object in object_list %}
<li>{{ object }}</li>
{% endfor %}
</ul>
<div class="pagination">{% pagination %}</div>
To modify style look to paginator.html.
URLs
This package can be used without URL modification, but if you want clean URL patterns without GET parameters, like /object-list/3/, you can use following code (example contains both methods - standard and cursor).
# urls.py
from django.urls import path, register_converter
from django_universal_paginator.converter import PageConverter, CursorPageConverter
register_converter(PageConverter, 'page')
register_converter(CursorPageConverter, 'cursor_page')
# standard
url(r'^object-list/<page:page>', ObjectList.as_view(), name='object_list'),
# or cursor
url(r'^cursor/<cursor_page:page>', ObjectList.as_view(), name='cursor_list'),
Cursor pagination
To use cursor pagination, queryset must be correctly ordered (order key must be combination of keys which are unique across queryset).
# views.py
from django.views.generic import ListView
from django_universal_paginator.cursor import CursorPaginateMixin
class List(CursorPaginateMixin, ListView):
paginate_by = 10
queryset = Book.objects.order_by('pk')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_universal_paginator-1.4.0.tar.gz
.
File metadata
- Download URL: django_universal_paginator-1.4.0.tar.gz
- Upload date:
- Size: 31.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f29974c2ff104bd7b86dfb12e6222893834249d0878fe9febf5a6ad01cada49 |
|
MD5 | 9f9fcbd3e8794af6c0f011dd6d6f0f66 |
|
BLAKE2b-256 | 40781ab3790bcfa4bc7c8de1983e699f0deae156cd4e48e6ddeb81c6603cfa46 |
File details
Details for the file django_universal_paginator-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: django_universal_paginator-1.4.0-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1c37f518a16a903c7e23c7c29b685864961bb9a951f9cf7d29219da14232c3c |
|
MD5 | 5d824f1f0fdd5329fd3e885815cbda88 |
|
BLAKE2b-256 | 6503f37cceb710df8919587c00fa5a2ebf1e6851a001a057be16d5d224ca0aea |