skillfed

django-admin-inline-paginator-plus

The 'Django Admin Inline Paginator Plus' is simple way to paginate your inlines in Django admin

django-admin-inline-paginator-plus v0.1.5 182.9K downloads/30d#10,082 on PyPI68
Permissive license MIT Active released

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-plus

uv

uv add django-admin-inline-paginator-plus

poetry

poetry add django-admin-inline-paginator-plus

Installing 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

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 4.2Framework :: Django :: 5.0Framework :: Django :: 5.1Framework :: Django :: 5.2Framework :: Django :: 6.0Intended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Internet :: WWW/HTTPTopic :: Software Development :: Libraries :: Python Modules

Tags

django admin inline paginationpaginate django admin inlinesdjango admin tabular inline paginatorajax pagination django admindjango admin stacked inline pages
django-adminpaginationajax

More Python Modules packages

idna

Converts domain names between Unicode and…

permissive · top 100 on PyPI

setuptools

Setuptools is a Python build backend and…

permissive · top 100 on PyPI

PyYAML

PyYAML parses and emits YAML 1.1 data format,…

permissive · top 100 on PyPI

pydantic

Pydantic validates Python data structures…

permissive · top 100 on PyPI

annotated-types

Provides reusable metadata objects for use with…

permissive · top 100 on PyPI

typing-inspection

Provides runtime tools to inspect and…

permissive · top 100 on PyPI

django-admin-inline-paginator

Adds pagination controls to Django admin inline…

permissive · top 5,000 on PyPI

paginate

Divides large lists or query results into…

permissive · top 5,000 on PyPI

django-unfold

Replaces Django's default admin interface with…

permissive · top 5,000 on PyPI

flask-paginate

Adds pagination UI components to Flask…

permissive · top 15,000 on PyPI

django-nonrelated-inlines

Provides Django admin inline classes that let…

permissive · top 15,000 on PyPI

wagtail-modeladmin

Adds Django model administration interfaces to…

permissive · top 15,000 on PyPI

django-admin-sortable2

Adds drag-and-drop reordering of model…

permissive · top 5,000 on PyPI

django-htmx

Provides Django integration utilities for htmx,…

permissive · top 5,000 on PyPI

django-reverse-admin

Adds reverse inline support to Django admin for…

permissive · top 15,000 on PyPI

django-admin-extra-buttons

Adds custom buttons, links, and views to Django…

permissive · top 15,000 on PyPI