skillfed

django-admin-inline-paginator

The "Django Admin Inline Paginator" is simple way to paginate your inline in django admin

django-admin-inline-paginator v0.4.0 2.3M downloads/30d#3,162 on PyPI132
Permissive license MIT Abandoned released

What it is and what it does

Django Admin Inline Paginator is a small extension for Django's admin interface that breaks up long lists of related objects in inline forms into paginated pages. Instead of showing all related records at once, you set a per_page limit and users navigate through them with page controls. It works with both single and multiple inlines on the same admin page, with unique pagination keys to keep each inline's page state separate.

The package is a straightforward drop-in: add it to INSTALLED_APPS, then inherit your inline classes from TabularInlinePaginated instead of the standard Django inlines and set a per_page attribute. The maintainer abandoned the project in 2023 due to personal circumstances and explicitly requested a new maintainer, so there is no active development or support.

Use it for:

  • Reduce page load time and clutter when a Django model has many related child records by paginating them in the admin interface.
  • Improve usability in admin forms where inline tables would otherwise require excessive scrolling.
  • Manage multiple related object types on a single admin page, each with its own pagination controls and page state.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Adds pagination controls to Django admin inline forms, allowing you to display related objects in smaller, navigable pages instead of a single long list.

Yes, if you are using Django admin with large inline datasets and are comfortable maintaining the code yourself or accepting the risk of no upstream support. The package is simple, has no known vulnerabilities, and the MIT license carries no restrictions. However, do not install if you require active maintenance or expect compatibility updates for future Django or Python versions—the project is explicitly abandoned as of 2023-04-26.

Install

django-admin-inline-paginator on PyPI

pip

pip install django-admin-inline-paginator

uv

uv add django-admin-inline-paginator

poetry

poetry add django-admin-inline-paginator

Installing django-admin-inline-paginator

Before you install

Low install friction with a single dependency on django. However, the project is marked abandoned as of April 2023 with no recent commits, and the maintainer explicitly stated they lack time to continue development.

License in practice

MIT license is permissive and imposes no restrictions on use, modification, or distribution in commercial or private projects.

Quickstart

pip install django-admin-inline-paginator

# In settings.py INSTALLED_APPS:
'django_admin_inline_paginator',

# In admin.py:
from django_admin_inline_paginator.admin import TabularInlinePaginated

class MyInline(TabularInlinePaginated):
    model = RelatedModel
    per_page = 2

Requires Django to be installed and configured; only works with Django admin.

Verify before relying

  • Compatibility with Django versions released after 2023-04-26 is untested and unknown.
  • Whether the package works with Python versions beyond 3.8 is not documented.
  • Active bug fixes or security patches are unlikely given the abandoned maintenance status.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.3)
Install friction low — pure-Python wheel
Runtime dependencies 1 — django
Maintenance abandoned — 1,206 days since the last release
Last repo commit
First released
Downloads 2,285,814/month — #3,162 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-0.4.0-py3-none-any.whl

Development Status :: 4 - BetaEnvironment :: Web EnvironmentFramework :: DjangoIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Topic :: Internet :: WWW/HTTPTopic :: Software Development :: Libraries :: Python Modules

Tags

django admin inline paginationpaginate django admin inlinesdjango admin tabular inline pageslimit inline records django admindjango admin inline per pagedjango admin related object pagination
django-adminui-enhancement

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

Adds pagination to Django admin inline forms,…

permissive · top 15,000 on PyPI

paginate

Divides large lists or query results into…

permissive · top 5,000 on PyPI

wagtail-modeladmin

Adds Django model administration interfaces to…

permissive · top 15,000 on PyPI

django-nonrelated-inlines

Provides Django admin inline classes that let…

permissive · top 15,000 on PyPI

flask-paginate

Adds pagination UI components to Flask…

permissive · top 15,000 on PyPI

django-unfold

Replaces Django's default admin interface with…

permissive · top 5,000 on PyPI

django-admin-sortable2

Adds drag-and-drop reordering of model…

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

django-more-admin-filters

Provides a collection of Django admin filter…

permissive · top 15,000 on PyPI