A super-simple set of pagination tools for Django 1.8+
Documentation
The full documentation will soon be at https://dj-paginator.readthedocs.org.
Features
Super simple code base.
Easy to create and switch themes.
Really good documentation! (coming soon)
Really good tests! (coming soon)
Class-Based View mixin so you don’t need to load template tags (coming soon)
Quickstart
Install dj-paginator:
pip install dj-paginator
In your installed apps:
INSTALLED_APPS = [
'paginator'
]
In your list view:
class MyListView(ListView):
model = MyModel
paginate_by = 10
In your list view template:
{% load paginator_tags %}
{% paginator %}
Done!
Switching to a new theme method 1
# Currently defaults to bootstrap. # I'll add foundation soon. PAGINATOR_THEME = 'foundation'
Switching to a new theme method 2
{% load paginator_tags %}
{# Is the default #}
{% bootstrap_paginator %}
{# For when I add the foundation theme#}
{% foundation_paginator %}
History
0.1.0 (2015-07-26)
First release on PyPI.
Inception
Release files for dj-paginator 0.2.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| dj-paginator-0.2.1.tar.gz | 7.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| dj_paginator-0.2.1-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 13.9 kB
Release files / dj-paginator-0.2.1.tar.gz
| Download URL | dj-paginator-0.2.1.tar.gz |
|---|---|
| Size | 7.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
151f63e1413b4f6e1aa4672622e3d543411e1d8078ac506808c78f621bfc8ef7
|
|
BLAKE2b-256 checksum How to use checksums |
e0c6e74cc3bed6525d2c778b6a153e35bb826029e24ba4da690b803c14b91dc7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / dj_paginator-0.2.1-py2.py3-none-any.whl
| Download URL | dj_paginator-0.2.1-py2.py3-none-any.whl |
|---|---|
| Size | 7.0 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
505204fc2a1ac962540584ee6098b69c7a6d1cc69c12ad85b4c18e1b9804e0e4
|
|
BLAKE2b-256 checksum How to use checksums |
d6bba8fb9629c6bc95d4a02ae853736fe012a77ad875b567fdddd46f785228d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |