django-admin-inline-paginator-plus
The 'Django Admin Inline Paginator Plus' is simple way to paginate your inlines in Django admin
What it is and what it does
Django Admin Inline Paginator Plus is a Django admin extension that breaks up inline model forms into paginated pages. Instead of rendering all related objects in a single long list, you define a per_page limit and the inline displays only that many rows at a time, with navigation controls to move between pages. The package supports both tabular and stacked inline layouts, and includes AJAX support via htmx for smooth pagination without full page reloads.
It's a fork of an unmaintained library, updated to work with modern Django versions (4.2 through 6.0) and current Python (3.11–3.14). The main use case is improving the admin interface when you have models with many related objects—pagination keeps the admin form responsive and usable instead of forcing the browser to render hundreds of inline rows.
Use it for:
- Reduce admin page load time when a model has many related records by showing only 5–10 inlines per page
- Manage multiple paginated inline sections on the same admin form with unique pagination_key settings
- Enable smooth, AJAX-driven pagination in the admin without requiring custom JavaScript
- Display tabular or stacked inlines with automatic page controls for large datasets
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Adds pagination to Django admin inline forms, allowing you to display related objects in smaller, navigable chunks rather than all at once.
Yes, if you use Django admin and have models with many related objects. The package is actively maintained, has no known vulnerabilities, low install friction, and solves a real usability problem. The MIT license carries no restrictions. Start with the basic TabularInlinePaginated or StackedInlinePaginated class and set per_page to a reasonable number for your use case.
Install
django-admin-inline-paginator-plus on PyPI
pip
pip install django-admin-inline-paginator-plusuv
uv add django-admin-inline-paginator-pluspoetry
poetry add django-admin-inline-paginator-plusInstalling django-admin-inline-paginator-plus
Before you install
Low friction: pure Python wheel with only django as a runtime dependency. Actively maintained as of May 2026 with recent releases.
License in practice
MIT license permits free use, modification, and distribution with minimal restrictions—suitable for both open and closed projects.
Quickstart
pip install django-admin-inline-paginator-plus
# In settings.py
INSTALLED_APPS = [
...,
'django_admin_inline_paginator_plus',
]
# In admin.py
from django_admin_inline_paginator_plus.admin import TabularInlinePaginated
class MyInline(TabularInlinePaginated):
model = MyModel
per_page = 5
Verify before relying
- Whether htmx integration is automatic or requires separate setup beyond adding the app to INSTALLED_APPS
- Compatibility with custom admin templates or whether it assumes Django's default admin structure
- Performance characteristics when paginating very large inline querysets
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — django |
| Maintenance | actively maintained — 161 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 182,917/month — #10,082 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_admin_inline_paginator_plus-0.1.5-py3-none-any.whl
Keywords: django, admin, paginator, inlines, pagination
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
django-admin-inline-paginatorAdds pagination controls to Django admin inline…
permissive · top 5,000 on PyPI
paginateDivides large lists or query results into…
permissive · top 5,000 on PyPI
django-unfoldReplaces Django's default admin interface with…
permissive · top 5,000 on PyPI
flask-paginateAdds pagination UI components to Flask…
permissive · top 15,000 on PyPI
django-nonrelated-inlinesProvides Django admin inline classes that let…
permissive · top 15,000 on PyPI
wagtail-modeladminAdds Django model administration interfaces to…
permissive · top 15,000 on PyPI
django-admin-sortable2Adds drag-and-drop reordering of model…
permissive · top 5,000 on PyPI
django-htmxProvides Django integration utilities for htmx,…
permissive · top 5,000 on PyPI
django-reverse-adminAdds reverse inline support to Django admin for…
permissive · top 15,000 on PyPI
django-admin-extra-buttonsAdds custom buttons, links, and views to Django…
permissive · top 15,000 on PyPI