The "Django Admin Inline Paginator" is simple way to paginate your inline in django admin
Project description
Django Admin Inline Paginator
The "Django Admin Inline Paginator" is simple way to paginate your inline in django admin
If you use or like the project, click Star
and Watch
to generate metrics and i evaluate project continuity.
Install:
pip install django-admin-inline-paginator
Usage:
-
Add to your INSTALLED_APPS, in settings.py:
INSTALLED_APPS = [ ... 'django_admin_inline_paginator', ... ]
-
Create your model inline:
from django_admin_inline_paginator.admin import TabularInlinePaginated class ModelWithFKAdminInline(TabularInlinePaginated): fields = (...) per_page = 1 model = ModelWithFK
-
Create main model admin and use inline:
@register(YourModel) class YourModelAdmin(ModelAdmin): fields = (...) inlines = (ModelWithFKAdminInline, ) model = YourModel
Advanced Usage:
-
Paginate multiples inlines:
class ModelWithFKInline(TabularInlinePaginated): fields = ('name', 'active') per_page = 2 model = ModelWithFK pagination_key = 'page-model' # make sure it's unique for page inline class AnotherModelWithFKInline(TabularInlinePaginated): fields = ('name', 'active') per_page = 2 model = AnotherModelWithFK pagination_key = 'page-another-model' # make sure it's unique for page inline
-
Use previous inlines
@register(YourModel) class YourModelAdmin(ModelAdmin): fields = (...) inlines = (ModelWithFKAdminInline, AnotherModelWithFKInline) model = YourModel
Images:
Need a Maintainer
In the last months i don't have much time, health problemas, change of country and others problems.
i have some surgeries for first part of 2022, and all of my current project don't use django-admin.
for these reasons, i need a help for a project continuation!!
Project details
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-admin-inline-paginator-0.4.0.tar.gz
.
File metadata
- Download URL: django-admin-inline-paginator-0.4.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1558b468d347e965c4d25be7f546da6682ea03d95098ae37b90c926edd491b1 |
|
MD5 | 534f91a03fa7bc822b93077376175210 |
|
BLAKE2b-256 | 7eeaf599112f5a40d5876155aa0df8ec5013e7a1864a061323b9b7d2d675d988 |
File details
Details for the file django_admin_inline_paginator-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: django_admin_inline_paginator-0.4.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63b2e13dca6b0933f4b7a4d3262c7cb31db8cda19ad005bcbc1c29bba0e95a1a |
|
MD5 | 623bf1161ea8e9a94f0f903ec6a8e38b |
|
BLAKE2b-256 | dd1ca32ec8947e0704624fe54e8dbb4efc8dc1f7afd9439fec79ac8bcb82da32 |